/* ============= MAIN & BODY ============= */
:root {
    --body-pt: 100px;
    --bg-color: #ffffff;
    --text-color: #000000;
}

@media screen and (max-width: 768px) {
    :root { --body-pt: 80px; }
}

@font-face {
    font-family: "Inter";
    src: url("/fonts/Inter.woff2") format("truetype");
    font-weight: 100 900;
    font-display: swap;
}

body {
    margin: 0;
    padding-top: var(--body-pt);
    font-family: "Inter", sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    transition: background 0.3s ease; 
}

/* DARK MODE */
body.darkmode-active {
    --bg-color: #121212;
    --text-color: #ffffff;
}

/* RESET LINKÓW */
a[href^="tel"], a[href^="mailto"] {
    color: inherit !important;
    text-decoration: none !important;
}

/* ============= HEADER ============= */
header {
    --header-bg: #fff;
    --header-pad: 20px 15%; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
    padding: var(--header-pad);
    background: var(--header-bg);
    transition: background 0.3s ease;
}

/* DARK MODE */
body.darkmode-active header {
    --header-bg: #1e1e1e;
}

/* RESPONSYWNOŚĆ */
@media screen and (max-width: 768px) {
    header {
        --header-pad: 10px 25px;
    }
}

/* ============= LOGO ============= */
.logo {
    --logo-h: 60px; 
    height: var(--logo-h);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

/* DARK MODE */
body.darkmode-active .logo {
    filter: brightness(0) invert(1);
}

/* RESPONSYWNOŚĆ */
@media screen and (max-width: 768px) {
    .logo {
        --logo-h: 50px;
        margin-left: -5px;
    }
}

/* ============= NAV & UI ELEMENTS ============= */
nav {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 56px;
}

nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    color: #1f54a3;
    padding: 10px 16px;
    border-radius: 6px;
    transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
    white-space: nowrap;
}

nav a:not(.umowwizyte):not(.darkmode):not(.phone-link):hover {
    transform: scale(1.1);
    color: #1275ff;
}

nav a.umowwizyte {
    background: #1275ff;
    color: #fff !important;
    padding: 10px 20px;
    font-weight: 700;
}

nav a.umowwizyte:hover {
    transform: scale(1.1);
    background: #1f54a3;
}

/* ============= DARKMODE SWITCHER ============= */
nav .darkmode {
    width: 50px;
    height: 30px;
    border-radius: 15px;
    background: #fff;
    border: 2px solid #000;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

nav .darkmode::after {
    content: "";
    position: absolute;
    top: -2px; left: -1px;
    width: 60%; height: calc(100% + 4px);
    border-radius: 15px;
    background: #000;
    transition: transform 0.3s ease;
}

nav .darkmode.dark { background: #000; border-color: #fff; }
nav .darkmode.dark::after { transform: translateX(20px); background: #fff; }

/* ============= HAMBURGER & DROPDOWN ============= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    cursor: pointer;
    margin-left: 15px;
    z-index: 1002;
}

.hamburger span {
    height: 3px; width: 100%;
    background-color: #1f54a3;
    border-radius: 4px;
    transition: 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.nav-dropdown {
    position: absolute;
    top: 70px; right: 0;
    width: 150px;
    background: #fff;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 999;
}

.nav-dropdown.active { display: flex; }
.nav-dropdown a { display: block !important; color: #1f54a3; }
.nav-dropdown a:hover { background: #cccccc; transform: scale(1.1); }

.nav-dropdown a.umowwizyte-dropdown {
    background-color: #1275ff !important; 
    color: #ffffff !important;          
    font-weight: 700 !important;
    text-align: center;
    border-radius: 8px;                
    margin-top: 5px;                     
    padding: 12px 10px !important;       
    transition: background 0.3s ease;
}

.nav-dropdown a.umowwizyte-dropdown:hover {
    background-color: #1f54a3 !important; 
    transform: none !important;            
}

/* PHONE */
.phone-link { display: none; align-items: center; justify-content: center; }
.phone-icon {
    height: 35px;
    cursor: pointer;
    transition: transform 0.25s ease;
}
.phone-icon:hover { transform: scale(1.15); }

/* UMÓW WIZYTĘ */
.nav-appointment-btn {
    display: none !important;
}

/* RESPONSYWNOŚĆ */
@media screen and (min-width: 1400px) and (max-width: 1600px) {
    header { padding: 20px 10%; }
}

@media screen and (max-width: 1890px) {
    header { padding: 15px 5% !important; }
    body { padding-top: 70px !important; }
    
    .hamburger { display: flex !important; }
    
    nav a:not(.darkmode):not(.lang-icon-wrapper):not(.lang-icon):not(.phone-link):not(.umowwizyte) {
        display: none;
    }
    
    .phone-link { display: flex !important; margin-right: -10px; }
    nav .darkmode { margin-right: -5px; }
}

@media screen and (max-width: 768px) {
    nav {
        gap: 12px !important; 
        justify-content: flex-end;
    }

    .phone-icon { 
        height: 33px !important; 
    }

    .phone-link { 
        display: flex !important;
        margin-left: 0px; 
        margin-right: -15px; 
    }

    nav .darkmode {
        margin-right: 10px !important;
        margin-left: 0px !important;
    }

    .hamburger {
        margin-left: -10px !important; 
    }

    nav a.umowwizyte, 
    .nav-appointment-btn {
        display: none !important;
    }
}

/* DARK MODE */
body.darkmode-active nav a { color: #fff; }
body.darkmode-active .hamburger span { background-color: #fff; }
body.darkmode-active .nav-dropdown { background: #1e1e1e; }
body.darkmode-active .nav-dropdown a { color: #fff; }
body.darkmode-active .nav-dropdown a:hover { background: #ffffff; }
body.darkmode-active .phone-icon { filter: brightness(0) invert(1); }

/*==========*/

nav a.home {
    color: #1275ff !important;
    font-weight: 800;
    font-size: 19px;
}

nav a.home:hover {
    transform: scale(1) !important; 
    background: transparent !important; 
}

.nav-dropdown a.home-dropdown {
    color: #1275ff !important;
    font-weight: 800; 
    font-size: 19px;
}

.nav-dropdown a.home-dropdown:hover {
    transform: scale(1) !important; 
    background: transparent !important; 
}

/*==========*/

/* ============= BANER ============= */
.baner-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 500px;
}

.banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.banner-img.active {
    opacity: 1;
}

.baner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%; 
}

.baner-tekst {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.baner-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #1275ff;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
}

.baner-btn:hover {
    background: #1f54a3;
    transform: scale(1.08);
}

.baner-btn .text-mobile { display: none; }
.baner-btn .text-desktop { display: inline; }

/* RESPONSYWNOŚĆ */
@media screen and (max-width: 1200px) {
    .baner-btn {
        padding: 12px 28px;
        font-size: 17px;
    }
    .baner-btn .text-desktop { display: none; }
    .baner-btn .text-mobile { display: inline; }
}

@media screen and (max-width: 768px) {
    .baner-wrapper {
        height: 240px;
    }
    .banner-img {
        object-position: left top;
    }
    .baner-tekst {
        font-size: 26px;
        margin-bottom: 15px;
    }
    .baner-btn {
        padding: 10px 24px;
        font-size: 16px;
    }
}

/* ============= INFO BAR ============= */
.info-bar {
    background-color: #1275ff;
    padding: 15px 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.info-bar p {
    margin: 0;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}

.info-bar strong, 
.znany-link {
    font-weight: 700;
}

.znany-link {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.znany-link:hover {
    transform: scale(1.03);
}

.znany-link::after {
    content: '';
    position: absolute;
    width: 100%; height: 2px;
    bottom: -2px; left: 0;
    background-color: currentColor;
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.znany-link:hover::after {
    transform: scaleX(1);
}

/* RESPONSYWNOŚĆ */
@media screen and (max-width: 768px) {
    .info-bar {
        padding: 10px 15px;
    }
    .info-bar p {
        font-size: 14px;
        line-height: 1.4;
    }
}

/* ============= O NAS ============= */
.onas-section {
    padding: 100px 20px;
    background: #ffffff;
    position: relative;
    transition: background 0.3s ease;
}

.onas-container {
    max-width: 900px;
    margin: left; 
    position: relative;
    left: 100px; 
    background: #e8f0fd;
    padding: 20px 40px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    box-sizing: border-box;
}

.onas-icon {
    width: 75px;         
    height: auto;
    object-fit: contain;
    transform: translateY(17.5px);
}

.onas-title {
    font-size: 40px;
    color: #1275ff;
    margin-top: -20px;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: left;
}

.onas-text {
    font-size: 23px;
    line-height: 1.8;
    color: #333;
    background: #ffffff;
    padding: 20px 40px;
    border-radius: 12px;
    transition: background 0.3s, color 0.3s;
}

/* DARK MODE */
body.darkmode-active .onas-section { background: #121212; }
body.darkmode-active .onas-container { background: #1e1e1e; }
body.darkmode-active .onas-text { background: #2a2a2a; color: #ddd; }

/* RESPONSYWNOŚĆ */
@media screen and (max-width: 1700px) {
    .onas-container {
        left: 0; 
        top: -50px;
        width: 100%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .onas-xd {
        display: none;
    }

    .onas-section { padding: 60px 20px; }
    
    .onas-container {
        top: 0; 
        padding: 20px;
        text-align: center;
    }

    .onas-title { 
        font-size: 32px;
        margin-top: -30px; 
        text-align: center
    }

    .onas-icon {
        transform: translateY(20px);
    }

    .onas-text {
        font-size: 20px;
        line-height: 1.6;
        padding: 20px 25px;
        text-align: left;
    }
}

/* ============= STICKY CALENDAR ============= */
.sticky-calendar-wrapper {
    position: absolute;
    top: 95px;
    right: 250px;
    width: 450px;
    z-index: 999;
    background: #e8f0fd;
    padding: 5px 30px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    box-sizing: border-box;
    transition: background 0.3s ease;
}

.sticky-calendar-title {
    font-size: 40px;
    color: #1275ff;
    margin-top: 20px;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: left;
}

.kalendarz-icon {
    width: 60px;         
    height: auto;
    object-fit: contain;
    transform: translateY(15px);
}

.sticky-calendar {
    width: 100%;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
}

/* DARK MODE */
body.darkmode-active .sticky-calendar-wrapper {
    background: #1e1e1e;
}

/* RESPONSYWNOŚĆ */
@media screen and (max-width: 1850px) {
    .sticky-calendar-wrapper {
        right: 150px;
    }
}

@media screen and (max-width: 1700px) {
    .sticky-calendar-wrapper {
        position: static;
        width: 90%;
        max-width: 500px;
        margin: 75px auto;
        display: block;
        padding: 30px;
    }

    .sticky-calendar-title {
        margin-top: -10px;
        margin-bottom: 30px;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .sticky-calendar-wrapper {
        width: 100%;
        padding: 40px 20px 5px;
    }

    .sticky-calendar-title {
        margin-top: -35px;
        font-size: 32px;
    }
}

/* ============= FIZJOTERAPIA I REHABILITACJA ============= */
.uslugifizjoreh-section {
    padding: 20px 20px 50px;
    background: #ffffff;
    position: relative;
    transition: background 0.3s ease;
}

.uslugifizjoreh-container {
    max-width: 900px;
    margin: left 0; 
    position: relative;
    left: 100px;
    background: #e8f0fd;
    padding: 10px 40px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    box-sizing: border-box;
    margin-top: -100px;
}

.uslugifizjoreh-title {
    font-size: 40px;
    color: #1275ff;
    margin-bottom: 35px;
    margin-top: 10px;
    font-weight: 700;
}

.fizjoireh-icon {
    width: 60px;         
    height: auto;
    object-fit: contain;
    transform: translateY(15px);
}

.uslugifizjoreh-text {
    font-size: 23px;
    line-height: 1.8;
    color: #333;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    transition: background 0.3s, color 0.3s;
}

/* DARK MODE */
body.darkmode-active .uslugifizjoreh-section { background: #121212; }
body.darkmode-active .uslugifizjoreh-container { background: #1e1e1e; }
body.darkmode-active .uslugifizjoreh-text { background: #2a2a2a; color: #ddd; }

/* RESPONSYWNOŚĆ */
@media screen and (max-width: 1700px) {
    .uslugifizjoreh-container {
        left: 0;
        margin: -125px auto 0 auto;
        width: 100%;
    }

    .uslugifizjoreh-title {
    text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .uslugifizjoreh-section {
        display: none;
    }

    .uslugifizjoreh-container {
        display: none;
    }
}

/* ============= SEKCJA USŁUG ============= */
.uslugi-section {
	padding: 80px 20px;
	background-color: #ffffff;
}

.uslugi-container {
	max-width: 1200px;
	margin: -25px auto;
}

.uslugi-title {
	font-size: 45px;
	color: #1275ff;
	text-align: center;
	margin-bottom: 35px;
	margin-top: 0px;
	font-weight: 700;
}

.uslugi-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
}

.uslugi-card {
	background: #e8f0fd;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.02);
	width: 350px;
	min-height: 320px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-sizing: border-box;
	transition: transform 0.3s ease;
}

.uslugi-card:hover {
	transform: translateY(-10px);
}

.uslugi-card h3 {
	color: #1f54a3;
	font-size: 26px;
	margin-bottom: 10px;
	min-height: 64px;
	display: flex;
	align-items: center;
}

.uslugi-card p {
	color: #1f54a3;
	font-size: 20px;
	line-height: 1.5;
	margin-bottom: 30px;
	flex-grow: 1;
    text-align: left;
}

.card-btn {
	display: inline-block;
	width: 100%;
	padding: 14px 0;
	background-color: #1275ff;
	color: #ffffff !important;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 18px;
	transition: background-color 0.3s ease;
}

.card-btn:hover {
	background-color: #1f54a3;
}

/* DARK MODE */
body.darkmode-active .uslugi-section {
	background-color: #121212 !important;
}

body.darkmode-active .uslugi-card {
	background: #1e1e1e !important;
}

body.darkmode-active .uslugi-card h3,body.darkmode-active .uslugi-card p {
	color: #ffffff !important;
}

/* RESPONSYWNOŚĆ */
@media screen and (max-width: 768px) {
    .uslugi-section {
        padding-top: 20px !important;
        padding-bottom: 20px;
    }

    .uslugi-container {
        margin-top: -120px !important; 
        position: relative;
        z-index: 10; 
    }

    .uslugi-title {
        margin-top: 0 !important;
        font-size: 30px;
        padding-top: 0;
    }

    .uslugi-card {
        width: 100%;
        min-height: auto;
        padding: 5px 30px 30px 30px;
    }
    .uslugi-card h3 {
	    font-size: 22px;
    }

    .uslugi-card p {
        display: none;
    }
}

/* ============= DLACZEGO WARTO? ============= */
.dlaczego-section {
	padding: 100px 20px;
	background: #ffffff;
	font-family: sans-serif;
	position: relative;
}

.dlaczego-container {
	max-width: 900px;
	position: relative;
	left: 100px;
	background: #e8f0fd;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	box-sizing: border-box;
}

.dlaczego-title {
	font-size: 40px;
	color: #1275ff;
    margin-top: -20px;
	margin-bottom: 40px;
	font-weight: 700;
	text-align: left;
}

.dlaczego-icon {
    width: 60px;         
    height: auto;
    object-fit: contain;
    transform: translateY(15px);
}

.dlaczego-text {
	font-size: 23px;
	line-height: 1.8;
	color: #333;
	text-align: left;
	background: #ffffff;
	padding: 40px;
	border-radius: 12px;
	box-sizing: border-box;
}

/* DARK MODE */
body.darkmode-active .dlaczego-container {
	background: #1e1e1e;
}

body.darkmode-active .dlaczego-section {
	background: #121212;
}

body.darkmode-active .dlaczego-text {
	color: #ddd;
	background: #2a2a2a;
}

/* RESPONSYWNOŚĆ */
@media screen and (max-width: 768px) {
	.dlaczego-section {
		padding: 80px 20px;
	}

	.dlaczego-container {
		margin-left: 0;
		text-align: center;
		width: 100%;
		padding: 20px 20px 30px 20px;
        margin: 30px auto 0 !important;
	}
    
	.dlaczego-title {
		font-size: 32px;
        margin-bottom: 30px;
	}

	.dlaczego-text {
		font-size: 20px;
		line-height: 1.6;
		text-align: left;
	}

	.dlaczego-text {
		padding: 25px;
	}
}

@media screen and (max-width: 1700px) {
	.dlaczego-container {
		left: 0;
		margin: 0 auto;
		width: 100%;
		max-width: 900px;
	}

    .dlaczego-title {
        text-align: center;
    }
}

/* ============= STICKY CERTYFIKAT ============= */
.sticky-certyfikat-wrapper {
	position: fixed;
	top: 50%;
	transform: translateY(-50%) scale(1.3);
	right: 250px;
	width: 250px;
	z-index: 9999;
	transform-origin: right center;
}
.sticky-certyfikat-wrapper a {
	display: block;
	width: 100%;
	background: #ffffff;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	border-radius: 12px;
	padding: 15px;
	border: 1px solid #e0e0e0;
	text-decoration: none;
}
@media screen and (max-width: 1700px) {
	.sticky-certyfikat-wrapper {
		display: none !important;
	}
}

/* ============= FAQ ============= */
.faq-section {
	max-width: 900px;
	margin: 40px auto;
	position: relative;
	background: #e8f0fd !important;
	border-radius: 20px !important;
	padding: 30px 100px 80px 100px !important;
	box-sizing: border-box !important;
	z-index: 1;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.faq-title-mobile {
    display: none;
}

.faq-section::before {
	content: "";
	position: absolute;
	top: 140px;
	bottom: 50px;
	left: 50px;
	right: 50px;
	background: #ffffff;
	border-radius: 15px !important;
	z-index: -1;
}

.faq-title {
	position: relative;
	font-size: 39px;
	color: #1275ff;
	text-align: left;
    margin-top: 0px;
	margin-bottom: 50px;
	font-weight: 700;
	z-index: 2;
}

.faq-icong {
    width: 60px;         
    height: auto;
    object-fit: contain;
    transform: translateY(15px);
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	padding: 20px 0;
	font-size: 20px;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #000000;
	-webkit-text-fill-color: #000000 !important
}

.faq-question::after {
	content: "";
	position: absolute;
	left: -30px;
	right: -30px;
	bottom: 0;
	height: 2px;
	background-color: #afafaf;
}

.faq-icon {
	font-size: 28px;
	transition: transform 0.3s ease;
}

.faq-answer {
	height: 0;
	overflow: hidden;
	transition: height 0.4s ease, opacity 0.3s ease;
	font-size: 18px;
	line-height: 1.6;
	color: #1f54a3;
	opacity: 0;
}

.faq-item.active .faq-answer {
	padding-top: 0px !important;
	padding-bottom: 15px !important;
}

.faq-item.active .faq-answer {
	opacity: 1;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

.faq-phone {
	color: #1275ff !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	text-decoration: none !important;
	border-bottom: 1px solid #1275ff !important;
	padding-bottom: 0px !important;
	line-height: 1 !important;
	-webkit-text-fill-color: #1275ff !important;
	display: inline-block;
	transition: transform 0.3s ease;
}

.faq-phone:hover {
	color: #1f54a3 !important;
	transform: scale(1.02);
}

/* DARK MODE */
body.darkmode-active .faq-phone {
	color: #1275ff !important;
}

body.darkmode-active .faq-section {
	background: #1e1e1e !important;
}

body.darkmode-active .faq-answer {
	color: #ddd;
}

body.darkmode-active .faq-section::before {
	background: #2a2a2a;
}

body.darkmode-active .faq-question {
	color: #fff;
	-webkit-text-fill-color: #ffffff !important;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 1775px) {
	.faq-section {
		padding: 60px 50px !important;
		margin-top: 40px !important;
		max-width: 900px;
	}

	.faq-item {
		position: relative;
		z-index: 2;
		margin-left: 40px !important;
		margin-right: 40px !important;
	}

    .faq-title {
	    text-align: center;
        margin-top: -30px;
	    margin-bottom: 50px;
        font-size: 32px;
    }
}

@media (max-width: 1100px) {
	.faq-section {
		max-width: 90% !important;
		padding: 50px 30px !important;
		margin-top: 30px !important;
	}

	.faq-title {
		margin-top: -50 !important;
		margin-bottom: 35px !important;
		font-size: 32px;
	}

    .faq-icong {
        transform: translateY(20px);
    }

	.faq-item {
		position: relative;
		z-index: 2;
		margin-left: 30px !important;
		margin-right: 30px !important;
	}

	.faq-section::before {
		top: 120px;
		bottom: 25px;
		left: 20px;
		right: 20px;
	}

	.faq-question::after {
		left: -15px;
		right: -15px;
	}
    
	.faq-question {
		font-size: 18px;
	}
}

@media (max-width: 768px) {
	.faq-section {
		max-width: 95% !important;
		padding: 40px 20px 40px !important;
		margin-top: 20px !important;
		margin-bottom: 50px !important;
		border-radius: 12px !important;
		overflow: hidden !important;
		position: relative;
	}

	.faq-title {
		font-size: 32px;
		margin-top: -30px !important;
		margin-bottom: 25px;
		text-align: center;
	}

	.faq-question {
		font-size: 18px;
	}

	.faq-section::before {
		top: 110px;
	}

    .faq-item.tmj-special {
        display: none;
    }
}

@media (max-width: 650px) {
	.faq-title-mobile {
        display: block;
        position: relative;
        color: #1275ff;
		font-size: 32px;
		margin-top: -30px !important;
		margin-bottom: 50px;
		text-align: center;
        font-weight: 700;
        z-index: 2;
	}

    .faq-section::before {
		top: 120px;
	}

    .faq-title {
        display: none;
    }

	.faq-question {
		font-size: 18px;
	}

	.faq-section::before {
		top: 110px;
	}
}

/* ============= OPINIE ============= */
.opinie-section {
	margin-top: 125px !important;
	padding: 20px 20px 50px 20px;
	background: #ffffff;
	position: relative;
}

.opinie-container {
	max-width: 1200px;
	margin: 0 auto;
	background: #e8f0fd;
	padding: 30px 50px 40px 50px !important;
	border-radius: 20px !important;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	box-sizing: border-box;
}

.opinie-title {
	font-size: 40px;
	color: #1275ff;
    margin-top: 0px;
	margin-bottom: 50px;
	font-weight: 700;
	text-align: center;
}

.opinie-icon {
    width: 60px;         
    height: auto;
    object-fit: contain;
    transform: translateY(20px);
}

.opinie-content-box {
	background: #ffffff;
	padding: 20px;
	border-radius: 15px !important;
	box-sizing: border-box;
	min-height: 250px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

body.darkmode-active .opinie-section {
	background: transparent;
}

body.darkmode-active .opinie-container {
	background: #1e1e1e;
}

body.darkmode-active .opinie-content-box {
	background: #2a2a2a;
}

/* RESPONSYWNOŚĆ */
@media screen and (max-width: 768px) {
	.opinie-section {
		padding: 0px 15px;
		margin-top: -175px;
	}

	.opinie-container {
		padding: 20px 10px 30px 10px !important;
		width: 100% !important;
		max-width: 95% !important;
	}

	.opinie-content-box {
		min-height: 350px;
		padding: 20px 0px !important;
	}
    
	.opinie-title {
		font-size: 32px;
        margin-top: -10px;
	    margin-bottom: 40px;
	}
}

/* ============= FORM BOX ============= */
.contact-section {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 80px 20px;
	width: 100%;
	box-sizing: border-box;
	background: transparent;
	margin-top: 0px;
}

.contact-container {
	width: 100%;
	max-width: 600px;
	padding: 40px;
	background: #e8f0fd;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	box-sizing: border-box;
}

.contact-container h2 {
	color: #1275ff;
	text-align: center;
	font-size: 40px;
	margin-bottom: 30px;
	margin-top: -20px;
}

.form-icon {
    width: 60px;         
    height: auto;
    object-fit: contain;
    transform: translateY(15px);
}

.form-group {
	margin-bottom: 20px;
	text-align: left;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #1f54a3;
}

.form-group input,.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid transparent;
	border-radius: 10px;
	font-family: inherit;
	font-size: 16px;
	box-sizing: border-box;
	transition: border-color 0.3s ease, background 0.3s ease;
	background: #fff;
	resize: none;
}

.form-group input:focus,.form-group textarea:focus {
	outline: none;
	border: 2px solid #1275ff !important;
}

.submit-btn {
	width: 100%;
	padding: 15px;
	background: #1275ff;
	color: white;
	border: none;
	border-radius: 10px;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	transition: transform 0.3s ease, background 0.3s ease;
}

.submit-btn:hover {
	background: #1f54a3;
	transform: translateY(1px);
}

.form-group textarea::-webkit-scrollbar {
	display: none !important;
}

.form-group textarea {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.checkbox-group input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
	margin: 0;
}

.custom-checkbox {
	display: flex !important;
	flex-direction: row;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
	text-align: left;
	margin-top: 15px;
	width: 100%;
}

.checkmark {
	display: block;
	width: 22px !important;
	height: 22px !important;
	min-width: 22px !important;
	min-height: 22px !important;
	flex-shrink: 0;
	background-color: #fff;
	border: 2px solid #1275ff;
	border-radius: 4px;
	position: relative;
	box-sizing: border-box;
	transition: all 0.2s ease;
}

.custom-checkbox input:checked ~ .checkmark {
	background-color: #1275ff;
}

.checkmark:after {
	content: "";
	position: absolute;
	opacity: 0;
	left: 5.05px;
	top: 1px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg) scale(1);
	transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border-radius: 1px;
}

.custom-checkbox input:checked ~ .checkmark:after {
	opacity: 1;
	transform: rotate(45deg) scale(5px);
}

.checkbox-text {
	font-size: 15px;
	line-height: 1.5;
	color: #1f54a3;
	font-weight: 500;
	margin: 0;
}

/* DARK MODE */
body.darkmode-active .checkbox-text {
	color: #fff;
}

body.darkmode-active .checkmark {
	background-color: #2a2a2a;
}

body.darkmode-active .custom-checkbox input:checked ~ .checkmark {
	background-color: #1275ff !important;
}

body.darkmode-active .contact-container {
	background: #1e1e1e;
}

body.darkmode-active .form-group label {
	color: #fff;
}

body.darkmode-active .form-group input,body.darkmode-active .form-group textarea {
	background: #2a2a2a;
	color: #fff;
	border: 1px solid transparent;
}

body.darkmode-active .form-group input:focus,body.darkmode-active .form-group textarea:focus {
	outline: none;
	border: 2px solid #1275ff !important;
	background: #2a2a2a;
}

/* RESPONSYWNOŚĆ */
@media screen and (max-width: 768px) {
	.contact-section {
		margin-top: 30px;
	}
    
    .contact-container h2 {
        font-size: 32px;
    }

    .form-icon {
        transform: translateY(20px);
    }
}

/* ============= MAPY ============= */
.maps-section {
	padding: 50px 20px;
	background: #ffffff;
	position: relative;
	margin-bottom: 100px;
}

.maps-container {
	max-width: 900px;
	margin: 0 auto;
	background: #e8f0fd;
	padding: 30px 40px 40px 40px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	box-sizing: border-box;
	margin-top: 20px;
}

.maps-title {
	font-size: 40px;
	color: #1275ff;
    margin-top: -10px;
	margin-bottom: 40px;
	font-weight: 700;
	text-align: center;
}

.maps-icon {
    width: 60px;         
    height: auto;
    object-fit: contain;
    transform: translateY(15px);
}

.maps-content-box {
	background: #ffffff;
	padding: 30px;
	border-radius: 15px;
	box-sizing: border-box;
	text-align: left;
}

.maps-content-box p {
	font-size: 21px;
	line-height: 1.6;
	color: #333;
	margin-bottom: 20px;
}

/* DARK MODE */
body.darkmode-active .maps-section {
	background: #121212;
}

body.darkmode-active .maps-container {
	background: #1e1e1e;
}

body.darkmode-active .maps-content-box {
	background: #2a2a2a;
}

body.darkmode-active .maps-content-box p {
	color: #ddd;
}

/* RESPONSYWNOŚĆ */
@media screen and (max-width: 768px) {
	.maps-section {
		padding: 30px 15px;
		margin-top: 0;
	}

	.maps-container {
		padding: 20px 15px 20px 15px !important;
		max-width: 95% !important;
	}

	.maps-title {
		font-size: 30px;
	}

	.maps-content-box {
		padding: 15px !important;
	}

	.maps-content-box p {
		font-size: 18px;
	}

	.maps-content-box iframe {
		height: 300px;
	}

    .maps-icon {
        width: 50px;
        transform: translateY(12.5px);
    }
}

/* ============= LANG EN ICON ============= */
.lang-icon {
	height: 50px;
	width: auto;
	cursor: pointer;
	transition: transform 0.25s ease;
}

.lang-icon:hover {
	transform: scale(1.15);
}

.modal-overlay {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 9999;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(5px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease-in-out;
}

.modal-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

.modal-content {
	background: rgba(255, 255, 255, 0.85);
	padding: 30px 50px;
	border-radius: 20px;
	text-align: center;
	border: 6px solid #ff0000;
	box-shadow: none;
	max-width: 400px;
	font-family: "Inter", sans-serif;
	transform: scale(0.7);
	transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
	transform: scale(1);
}

.modal-content p {
	color: #333;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
}

.modal-close-btn {
	background: #ff0000;
	color: white;
	border: none;
	padding: 10px 25px;
	border-radius: 10px;
	cursor: pointer;
	font-weight: bold;
	transition: transform 0.2s ease;
}

.modal-close-btn:hover {
	transform: scale(1.1);
}

/* DARK MODE */
body.darkmode-active .modal-content {
	background: #1e1e1e;
}

body.darkmode-active .modal-content p {
	color: #ffffff;
}

/* RESPONSYWNOŚĆ */
@media screen and (max-width: 768px) {
	.modal-content {
		padding: 20px 25px;
		width: 85%;
		max-width: 300px;
	}

	.modal-content p {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.modal-close-btn {
		padding: 8px 20px;
		font-size: 14px;
	}
}

@media screen and (max-width: 1890px) {
	.lang-icon {
		margin-right: -5px;
		margin-left: 5px;
	}
}

@media screen and (max-width: 768px) {
	.lang-icon {
		display: none !important;
	}

	.lang-icon-wrapper {
		display: none !important;
	}
}

/* ============= SCROLLBAR ============= */
::-webkit-scrollbar {
	width: 8px !important;
	height: 8px !important;
}

::-webkit-scrollbar-track,::-webkit-scrollbar-track-piece,::-webkit-scrollbar-corner {
	background: transparent !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

::-webkit-scrollbar-button {
	width: 0 !important;
	height: 0 !important;
	display: none !important;
}

::-webkit-scrollbar-thumb {
	background-color: #1f54a3 !important;
	border-radius: 10px !important;
	border: none !important;
}

::-webkit-scrollbar-thumb:hover {
	background-color: #2e72d2 !important;
}

* {
	scrollbar-width: thin;
	scrollbar-color: #1f54a3 transparent !important;
}

/* ============= FADE IN ============= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform; /* Podpowiada przeglądarce, że to będzie animowane */
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ============= COOKIES ============= */
.cookie-banner {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: #ffffff;
	border: 2px solid #1275ff;
	padding: 15px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	z-index: 10000;
	visibility: hidden;
}

.cookie-banner.active {
	visibility: visible;
}

.cookie-banner p {
	margin: 0;
	color: #333;
	font-size: 14px;
}

.cookie-banner button {
	background: #1275ff;
	color: white;
	border: none;
	padding: 8px 20px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
	margin-left: 15px;
	transition: transform 0.3s ease;
}

.cookie-banner button:hover {
	background: #0056cc;
	transform: scale(1.1);
}

/* COOKIES - DARK MODE */
body.darkmode-active .cookie-banner {
    background: #1e1e1e;
    border-color: #1275ff; 
}

body.darkmode-active .cookie-banner p {
    color: #ffffff;
}

body.darkmode-active .cookie-banner button {
    background: #1275ff;
    color: #ffffff;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
	.cookie-banner {
		flex-direction: column;
		text-align: center;
	}
	.cookie-banner button {
		margin-top: 10px;
		width: 100%;
	}
}

/* ============= FOOTER ============= */
.footer {
	background-color: #f8f9fa;
	color: #1f1f1f;
	padding: 40px 20px 20px 20px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	border-top: 3px solid #0056b3;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 40px;
}

.footer-column {
	flex: 1;
	min-width: 250px;
	text-align: center;
}

.footer-column h4 {
	color: #0056b3;
	font-size: 1.1rem;
	margin-top: 0;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-column p {
	line-height: 1.6;
	font-size: 0.95rem;
	margin-bottom: 10px;
}

.footer-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-column ul li {
	margin-bottom: 8px;
	transition: transform 0.3s ease;
}

.footer-column ul li:hover {
	transform: scale(1.1);
}

.footer-column ul li a {
	text-decoration: none;
	color: #1f1f1f;
	transition: color 0.3s ease;
	font-size: 0.9rem;
}

.footer-column ul li a:hover {
	color: #0056b3;
}

.footer-column p a.footer-link-highlight {
	color: #1275ff !important;
	text-decoration: underline !important;
	font-weight: 600;
	display: inline-block;
	transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
	backface-visibility: hidden;
}

.footer-column p a.footer-link-highlight:hover {
	transform: scale(1.03);
	text-decoration: underline !important;
}

.footer-bottom {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 8px 20px;
	margin-top: 30px;
	border-top: 1px solid #0056b3;
	font-size: 0.85rem;
}

.footer-bottom p {
	grid-column: 2;
	margin: 0;
	text-align: center;
}

.made-by {
	grid-column: 3;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
}

.made-by span {
	font-size: 0.9rem;
	color: #555;
}

.made-by img {
	height: 17px;
	width: auto;
	display: block;
	transition: transform 0.3s ease;
	margin-top: 2.5px;
}

.made-by img:hover {
	transform: scale(1.1);
}

/* DARK MODE */
body.darkmode-active .footer {
	background-color: #1e1e1e;
	color: #ffffff;
}

body.darkmode-active .footer-column h4 {
	color: #1275ff;
}

body.darkmode-active .footer-column ul li a {
	color: #ffffff;
}

body.darkmode-active .footer-column ul li a:hover {
	color: #1275ff;
}

body.darkmode-active .made-by span {
	color: #ffffff;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
	.footer-bottom {
		display: flex;
		flex-direction: column;
		gap: 10px;
		text-align: center;
	}
    
	.made-by {
		justify-content: center;
	}
}