/* ==========================================================================
   LOKALNE CZCIONKI POPPINS
   ========================================================================== */
/* poppins-regular - latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v23-latin_latin-ext-regular.woff2') format('woff2');
}
/* poppins-600 - latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/poppins-v23-latin_latin-ext-600.woff2') format('woff2');
}
/* poppins-700 - latin_latin-ext */
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/poppins-v23-latin_latin-ext-700.woff2') format('woff2');
}

:root {
    --primary-color: #0d47a1;
    --secondary-color: #4caf50;
    --light-color: #fff;
    --dark-color: #212121;
    --grey-color: #f4f4f4;
    --font-family: 'Poppins', sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: #333;
    background-color: var(--light-color);
    overflow-x: hidden;
}
main {
    padding-top: 70px;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
h1, h2, h3, h4 {
    line-height: 1.2;
    color: var(--primary-color);
}
h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}
section {
    padding: 80px 0;
}
section:nth-child(even), #contact {
    background-color: var(--grey-color);
}
header {
    background: var(--light-color);
    box-shadow: 0 2px 5px rgba(0,0,0,.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}
.logo img {
    height: 45px;
    margin-right: 10px;
}
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    padding: 0;
}
.nav-menu li {
    margin-left: 25px;
}
.nav-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    transition: color .3s ease;
}
.nav-menu a:hover {
    color: var(--primary-color);
}
.nav-menu a.cta-button-nav { 
    background: var(--secondary-color);
    color: var(--light-color); 
    padding: 8px 18px;
    border-radius: 50px;
    transition: background-color .3s ease;
    cursor: pointer;
}
.cta-button-nav:hover {
    background: #388e3c;
}
#mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}
#mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 5px 0;
    transition: all .3s ease;
}
#mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
#mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}
#mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
#hero {
    position: relative;
    height: calc(100vh - 70px);
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13,71,161,.6);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
#hero h1 {
    font-size: 3.5rem;
    color: var(--light-color);
    margin-bottom: 20px;
}
#hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}
.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: transform .3s ease,background-color .3s ease;
    border: none;
    cursor: pointer;
}
.cta-button:hover {
    background: #388e3c;
    transform: translateY(-3px);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.service-link {
    text-decoration: none;
    color: inherit;
}
.service-card {
    background: var(--light-color);
    padding: 30px;
    height: 100%;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,.08);
    transition: transform .3s ease,box-shadow .3s ease;
    display: flex;
    flex-direction: column;
}
.service-link:hover .service-card {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
.service-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}
.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}
.service-card p {
    flex-grow: 1;
}
.service-learn-more {
    margin-top: 15px;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color .3s ease;
}
.service-link:hover .service-learn-more {
    color: #388e3c;
}
.portfolio-grid {
    display: grid;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}
.portfolio-item h3 {
    text-align: center;
    margin-bottom: 20px;
}
.image-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.image-container {
    position: relative;
}
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
}
.image-container .label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,.6);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: 700;
    font-size: .9rem;
}
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}
.about-text,
.about-image {
    flex: 1;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
}
#about .about-text h2 {
    text-align: left;
    margin-bottom: 20px;
}
.about-text>p {
    margin-bottom: 30px;
}
.about-features {
    list-style: none;
    padding: 0;
}
.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}
.about-features li:last-child {
    margin-bottom: 0;
}
.about-features i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-top: 5px;
    width: 40px;
    text-align: center;
}
.feature-text h4 {
    font-size: 1.2rem;
    margin: 0 0 5px;
    color: var(--primary-color);
}
.feature-text p {
    margin: 0;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}
#coverage .coverage-subtitle {
    text-align: center;
    max-width: 700px;
    margin: -20px auto 40px;
}
.coverage-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}
.coverage-map {
    flex: 1;
    height: 450px;
    background-color: #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
}
.coverage-list {
    flex: 1;
}
.coverage-list h3 {
    margin-bottom: 20px;
}
.coverage-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0;
}
.coverage-list li {
    display: flex;
    align-items: center;
}
.coverage-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    text-align: left;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--font-family);
    font-size: 1rem;
}
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--font-family);
    font-size: 1rem;
    background-color: #fff;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 12px;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}
.contact-grid-layout {
    display: flex;
    background: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    overflow: hidden;
    max-width: 1100px;
    margin: 40px auto 0;
}
.contact-left-column {
    flex: 1;
    padding: 40px;
    background-color: #f8fafd;
    display: flex;
    flex-direction: column;
}
.contact-grid-logo {
    max-width: 250px;
    margin-bottom: 30px;
}
.contact-left-column h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.contact-left-column>p {
    color: #555;
    margin-bottom: 30px;
    flex-grow: 1;
}
.contact-left-column ul {
    list-style: none;
    padding: 0;
}
.contact-left-column li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}
.contact-left-column li i {
    color: var(--primary-color);
    margin-right: 15px;
    width: 20px;
    text-align: center;
}
.contact-left-column a {
    text-decoration: none;
    color: #333;
    transition: color .3s;
}
.contact-left-column a:hover {
    color: var(--primary-color);
}
.contact-form-main {
    flex: 1.2;
    padding: 40px;
}
.form-submit-wrapper {
    text-align: left;
}
main.subpage-content {
    padding: 60px 0;
}
.subpage-content .container {
    max-width: 800px;
}
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    font-size: .9rem;
}
.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: text-decoration .2s ease;
}
.breadcrumb-item a:hover {
    text-decoration: underline;
}
.breadcrumb-item+.breadcrumb-item::before {
    content: '>';
    margin: 0 10px;
    color: #888;
}
.breadcrumb-item.active {
    color: #555;
    font-weight: 600;
}
.subpage-content h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 40px;
}
.subpage-header-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
}
.content-box {
    background-color: var(--grey-color);
    padding: 30px 40px;
    border-radius: 8px;
    margin-bottom: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
}
.subpage-content .content-box h2 {
    text-align: left;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 20px;
}
.subpage-content .content-box h2.text-center {
    text-align: center;
}
.content-box p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}
.features-grid {
    display: grid;
    gap: 1px;
    background-color: #dde4ed;
    border: 1px solid #dde4ed;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 30px;
}
.feature-item {
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: center;
    background-color: #fff;
}
.feature-title {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    font-weight: 600;
}
.feature-title i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    width: 30px;
    text-align: center;
}
.feature-title h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}
.feature-description {
    padding: 20px;
    border-left: 1px solid #dde4ed;
    align-self: stretch;
    display: flex;
    align-items: center;
}
.feature-description p {
    margin: 0;
    font-size: 1rem;
    color: #555;
}
.cta-box {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 10px 25px rgba(13,71,161,.2);
}
.cta-box h3 {
    color: var(--light-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    opacity: .9;
}
.pricing-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: .95rem;
    box-shadow: 0 4px 15px rgba(0,0,0,.07);
    background-color: var(--light-color);
}
.pricing-table thead tr {
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: left;
}
.pricing-table th,
.pricing-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}
.pricing-table tbody tr {
    border-bottom: 1px solid #f2f2f2;
}
.pricing-table tbody tr:nth-of-type(even) {
    background-color: #f9f9f9;
}
.pricing-table tbody tr:last-of-type {
    border-bottom: 2px solid var(--primary-color);
}
.pricing-table td small {
    display: block;
    color: #666;
    margin-top: 4px;
}
.disclaimer {
    font-size: .85rem;
    text-align: center;
    color: #777;
    margin-top: 1rem;
}
.travel-costs {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f0f4f8;
    border-left: 5px solid var(--primary-color);
    border-radius: 4px;
}
.travel-costs h3 {
    margin-top: 0;
    color: var(--primary-color);
    text-align: left;
    font-size: 1.5rem;
}
.travel-costs ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}
.travel-costs li {
    margin-bottom: .5rem;
}
.travel-costs i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}
.travel-costs .fa-check-circle {
    color: var(--secondary-color);
}
.travel-costs .fa-truck {
    color: var(--primary-color);
}
.packages-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #e0e0e0;
}
.packages-subtitle {
    text-align: center;
    max-width: 700px;
    margin: -20px auto 20px;
    color: #555;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
    margin-top: 60px;
}
.package-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease,box-shadow .3s ease;
    position: relative;
    overflow: hidden;
}
.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,.1);
}
.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.package-description {
    color: #555;
    min-height: 60px;
    margin-bottom: 20px; 
}
.package-card h4 {
    font-size: .9rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 5px;
}
.recommendation {
    font-size: .9rem;
    font-style: italic;
    min-height: 50px;
    margin-bottom: 20px; 
}
.package-card ul {
    margin-bottom: 30px;
    padding-left: 0;
    list-style: none;
}
.package-card ul li {
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.package-card ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.6;
}
.package-button-wrapper {
    margin-top: auto;
    text-align: center;
}
.btn-outline {
    display: inline-grid;
    place-items: center;
    background: var(--secondary-color);
    color: #fff;
    border: 2px solid var(--secondary-color);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
    cursor: pointer;
}
.btn-outline:hover {
    background: #388e3c;
    border-color: #388e3c;
    color: #fff;
}
.package-card.recommended {
    border-color: var(--secondary-color);
    border-width: 2px;
    transform: scale(1.05);
}
.package-card.recommended:hover {
    transform: scale(1.08);
}
.popular-badge {
    position: absolute;
    top: 25px;
    right: -40px;
    background: var(--secondary-color);
    color: #fff;
    padding: 5px 40px;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,.2);
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity .3s ease;
}
.modal-overlay.active {
    display: flex;
    opacity: 1;
}
.modal-content {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,.2);
    position: relative;
    max-width: 500px;
    width: 90%;
    transform: scale(.95);
    transition: transform .3s ease;
}
.modal-overlay.active .modal-content {
    transform: scale(1);
}
.modal-content h2 {
    margin-top: 0;
    margin-bottom: 10px;
}
.modal-content .contact-subtitle {
    margin-top: 0;
    margin-bottom: 30px;
    text-align: center;
    max-width: none;
}
.modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
    transition: color .2s ease;
}
.modal-close:hover {
    color: var(--dark-color);
}
footer {
    background: var(--dark-color);
    color: #ccc;
    padding: 60px 0 0;
}
.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 40px;
    padding-bottom: 40px;
}
.footer-column p {
    font-size: .9rem;
    line-height: 1.7;
}
.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
    border-radius: 8px;
}
.footer-column h4 {
    color: var(--light-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}
.footer-column ul {
    list-style: none;
    padding: 0;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color .3s ease,padding-left .3s ease;
}
.footer-column a:hover {
    color: var(--light-color);
    padding-left: 5px;
}
.footer-column i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
}
.footer-bottom {
    border-top: 1px solid #444;
    padding: 20px 0;
    text-align: center;
    font-size: .9rem;
}
.other-services-nav {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: rgba(76,175,80,.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 20px 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,.15);
    z-index: 1001;
    border-radius: 0 12px 12px 0;
}
.other-services-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.other-services-nav a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all .3s ease;
    min-width: 250px;
}
.other-services-nav a:hover {
    background-color: rgba(255,255,255,.2);
}
.other-services-nav a i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}
.policy-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: var(--light-color);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    line-height: 1.8;
    font-size: 1.1em;
}
.policy-content h1 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 1em;
    color: var(--primary-color);
}
.policy-content h2,
.policy-content h3 {
    color: var(--primary-color);
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    font-weight: 600;
}
.policy-content h2 {
    font-size: 1.8em;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5em;
}
.policy-content h3 {
    font-size: 1.4em;
    margin-top: 1.2em;
}
.policy-content p,
.policy-content ul,
.policy-content ol {
    margin-bottom: 1em;
}
.policy-content ul,
.policy-content ol {
    padding-left: 25px;
}
.policy-content li {
    margin-bottom: 0.5em;
}
.policy-content a {
    color: var(--primary-color);
    text-decoration: underline;
}
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--light-color);
    padding: 20px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}
.cookie-consent-banner.show {
    transform: translateY(0);
}
.cookie-consent-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}
.cookie-consent-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 800px;
}
.cookie-consent-content a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}
.cookie-consent-content a:hover {
    color: var(--light-color);
}
.cookie-consent-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}
.cookie-consent-buttons .cta-button {
    padding: 10px 25px;
    font-size: 0.9rem;
    border-radius: 50px;
}
.cookie-consent-buttons .btn-outline-secondary {
    background: transparent;
    color: var(--light-color);
    border: 2px solid var(--light-color);
}
.cookie-consent-buttons .btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--light-color);
    transform: translateY(-3px);
}
.thank-you-section {
    padding: 100px 0;
    text-align: center;
    background-color: var(--grey-color);
}
.thank-you-section .fas.fa-check-circle {
    font-size: 5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}
.thank-you-section h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.thank-you-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #555;
}
.thank-you-section .cta-button {
    margin-top: 20px;
}
.error-section {
    padding: 100px 0;
    text-align: center;
    background-color: var(--grey-color);
}
.error-section .fas.fa-times-circle {
    font-size: 5rem;
    color: #dc3545;
    margin-bottom: 30px;
}
.error-section h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.error-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 15px;
    color: #555;
}
.error-section p:last-of-type {
    margin-bottom: 40px;
}
.error-section .cta-button {
    margin-top: 20px;
}
.calculator-section {
    padding: 40px 0;
}
.calculator-section h2 {
    text-align: center;
    margin-bottom: 30px;
}
.calculator-form {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    max-width: 850px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}
.calculator-form .form-group {
    margin-bottom: 0;
}
.calculator-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.05rem;
}
.calculator-form input[type="number"],
.calculator-form select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 1.05rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.calculator-form input[type="number"]:focus,
.calculator-form select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.2);
    outline: none;
}
.calculator-form input[type="checkbox"],
.calculator-form input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    background-color: var(--light-color);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    outline: none;
}
.calculator-form input[type="radio"] {
    border-radius: 50%;
}
.calculator-form input[type="checkbox"] {
    border-radius: 4px;
}
.calculator-form input[type="checkbox"]:checked,
.calculator-form input[type="radio"]:checked {
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
}
.calculator-form input[type="radio"]:checked::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.calculator-form input[type="checkbox"]:checked::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--light-color);
    font-size: 14px;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.calculator-form input[type="checkbox"]:focus,
.calculator-form input[type="radio"]:focus {
    box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.2);
}
.calculator-form .option-group label,
.calculator-form .checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
    color: #555;
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 0;
}
.calculator-form .service-inputs {
    border: 1px solid #e0e0e0;
    padding: 25px;
    border-radius: 10px;
    background-color: #fcfcfc;
    transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, padding 0.4s ease-in-out, border 0.4s ease-in-out;
    overflow: hidden;
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}
.calculator-form .service-inputs.hidden {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    pointer-events: none;
    border: none;
    margin-bottom: 0;
}
.calculator-form .service-inputs h4 {
    margin-top: 0;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.calculator-form .options-container {
    margin-top: 15px;
    margin-bottom: 20px;
}
.calculator-form .option-group {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 10px;
}
.calculator-result {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border: 2px solid var(--secondary-color);
}
.calculator-result h3 {
    margin-top: 0;
    font-size: 1.8rem;
    color: var(--light-color);
}
.calculator-result p {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.calculator-result .price-value {
    font-size: 3.2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
    color: var(--light-color);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}
.calculator-result .vat-note {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: -10px;
}
.calculator-result .disclaimer {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 25px;
    opacity: 0.9;
    background-color: rgba(0,0,0,0.1);
    padding: 10px 15px;
    border-radius: 5px;
}
.travel-cost-info {
    margin-top: 30px;
    padding: 20px;
    background-color: #f0f8ff;
    border-left: 6px solid var(--primary-color);
    border-radius: 6px;
}
.travel-cost-info h3 {
    margin-top: 0;
    color: var(--primary-color);
    text-align: left;
    font-size: 1.6rem;
    margin-bottom: 15px;
}
.travel-cost-info ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}
.travel-cost-info ul li {
    margin-bottom: 8px;
    color: #444;
    font-size: 1.05rem;
}
.travel-cost-info ul li i {
    margin-right: 10px;
    width: 25px;
    text-align: center;
    font-size: 1.2rem;
}
.travel-cost-info .fa-check-circle {
    color: var(--secondary-color);
}
.travel-cost-info .fa-truck {
    color: var(--primary-color);
}
.hidden {
    display: none;
}
.text-center {
    text-align: center;
}
.small-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: -10px;
}
.input-error {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}
.input-error-border,
.input-error-border:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease-out,transform .8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   MOBILE FAB - Pływający przycisk kalkulatora
   ========================================================================== */
.mobile-calculator-fab {
    display: none; /* Ukryty domyślnie */
    position: fixed;
    z-index: 999; /* Pod menu i modalem, ale nad treścią */
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    /* Użycie flexboxa do wyśrodkowania ikony w środku */
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.7rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.mobile-calculator-fab:hover {
    background-color: #388e3c; /* Ciemniejszy zielony, jak w innych CTA */
    transform: scale(1.08) rotate(5deg);
}


@media (max-width:992px) {
    .other-services-nav {
        display: none;
    }
    .mobile-calculator-fab {
        display: flex;
    }
    .contact-grid-layout {
        flex-direction: column;
    }
}
@media (max-width:768px) {
    section {
        padding: 60px 0;
    }
    main.subpage-content {
        padding: 40px 0;
    }
    h2 {
        font-size: 2rem;
    }
    #hero {
        height: 90vh;
    }
    #hero h1 {
        font-size: 2.5rem;
    }
    #hero p {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255,255,255,.98);
        text-align: center;
        padding-top: 80px;
        backdrop-filter: blur(5px);
        transition: right .4s ease;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-menu li {
        margin: 20px 0;
    }
    #mobile-menu-toggle {
        display: block;
        z-index: 1001;
    }
    #mobile-menu-toggle.is-active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    #mobile-menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }
    #mobile-menu-toggle.is-active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .image-comparison {
        grid-template-columns: 1fr;
    }
    .about-content, .coverage-wrapper {
        flex-direction: column;
    }
    .about-text {
        order: 1;
    }
    .about-image {
        order: 2;
        margin-top: 30px;
    }
    .coverage-list ul {
        grid-template-columns: 1fr;
    }
    .contact-left-column, .contact-form-main {
        padding: 30px 20px;
    }
    .form-submit-wrapper {
        text-align: center;
    }
    .footer-column {
        text-align: center;
    }
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-column ul li a {
        padding-left: 0;
    }
    .footer-column a:hover {
        padding-left: 0;
    }
    .feature-item {
        grid-template-columns: 1fr;
    }
    .feature-description {
        border-left: none;
        border-top: 1px solid #e9eef3;
        padding-top: 15px;
    }
    .feature-title {
        padding-bottom: 15px;
    }
    .policy-content {
        margin: 20px 10px;
        padding: 15px;
        font-size: 1em;
    }
    .policy-content h1 {
        font-size: 2em;
    }
    .policy-content h2 {
        font-size: 1.5em;
    }
    .cookie-consent-banner {
        padding: 15px 10px;
    }
    .cookie-consent-content p {
        font-size: 0.9rem;
    }
    .cookie-consent-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cookie-consent-buttons .cta-button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    .subpage-content h1 {
        font-size: 2.2rem;
    }
    .thank-you-section h1 {
        font-size: 2.2rem;
    }
    .thank-you-section p {
        font-size: 1rem;
        padding: 0 15px;
    }
    .thank-you-section .fas.fa-check-circle {
        font-size: 4rem;
    }
    .error-section h1 {
        font-size: 2.2rem;
    }
    .error-section p {
        font-size: 1rem;
        padding: 0 15px;
    }
    .error-section .fas.fa-times-circle {
        font-size: 4rem;
    }
    .calculator-form {
        padding: 20px;
        gap: 15px;
    }
    .calculator-form .service-inputs {
        padding: 15px;
    }
    .calculator-form .option-group {
        flex-direction: column;
        gap: 10px;
    }
    .calculator-result .price-value {
        font-size: 2.5rem;
    }
    .travel-cost-info h3 {
        font-size: 1.4rem;
    }
}
/* Konsent w formularzu */
.consent-group {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;       /* odstęp nad i pod checkboxem */
}

.consent-group input[type="checkbox"] {
  margin: 0 0.75rem 0 0;   /* odstęp pomiędzy checkboxem a tekstem */
  width: auto;             /* naturalny rozmiar pola */
  height: auto;
}

.consent-group label {
  line-height: 1.4;        /* lepsza czytelność linii tekstu */
  font-size: 0.95rem;      /* dopasuj rozmiar czcionki do reszty formularza */
}