@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    scroll-padding-top: 6rem;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}

:root {
    --glowny-kolor: #d90429;
    --text-kolor: #020102;
    --tlo-kolor: #fff;
    --secondary-color: #2b2d42;
    --accent-color: #8d99ae;
    --light-gray: #f8f9fa;
    --navbar-height: 90px;
}

img {
    width: 100%;
}

body {
    color: var(--text-kolor);
    padding-top: var(--navbar-height);
    background-color: var(--tlo-kolor);
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

/* Enhanced Header Styles */
header {
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
    height: var(--navbar-height);
    backdrop-filter: blur(15px);
    border-bottom: 3px solid var(--glowny-kolor);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    height: var(--navbar-height);
    max-width: 1200px;
    margin: 0 auto;
}

#menu-icon {
    font-size: 28px;
    cursor: pointer;
    color: var(--text-kolor);
    display: none;
    transition: all 0.3s ease;
    padding: 10px;
}

#menu-icon:hover {
    color: var(--glowny-kolor);
    transform: scale(1.1);
}

.logo {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
}

.logo-img {
    width: 100px !important;
    height: auto;
    max-width: 100px;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.logo-img:hover {
    transform: scale(1.05);
}

.navbar {
    display: flex;
    column-gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar a {
    color: var(--text-kolor);
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 0;
    position: relative;
    letter-spacing: 0.5px;
}

.navbar a:hover,
.navbar .active {
    color: var(--glowny-kolor);
    transform: translateY(-2px);
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--glowny-kolor), #ff6b6b);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.navbar a:hover::after,
.navbar .active::after {
    width: 100%;
}

.navbar .active {
    padding: 12px 0;
    color: var(--glowny-kolor);
}

/* Centered Home Section Design */
.home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0c0c0c 0%, #2b2d42 100%);
    position: relative;
    margin-top: calc(var(--navbar-height) * -1);
    padding-top: var(--navbar-height);
    overflow: hidden;
    text-align: center;
}

.home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(217, 4, 41, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(217, 4, 41, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><polygon fill="white" points="0,1000 1000,1000 1000,0"/></svg>');
    background-size: cover;
}

.home-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.home-text {
    color: #fff;
    margin-bottom: 3rem;
}

.home-text h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.home-text span {
    color: var(--glowny-kolor);
    font-weight: 700;
}

.home-text p {
    font-size: 1.4rem;
    font-weight: 300;
    margin: 2rem 0 3rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 700px;
}

.home-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    background: var(--glowny-kolor);
    color: var(--tlo-kolor);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid var(--glowny-kolor);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.btn:hover {
    background: transparent;
    color: var(--glowny-kolor);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(217, 4, 41, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--text-kolor);
    transform: translateY(-3px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.feature-item {
    text-align: center;
    color: #fff;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item i {
    font-size: 3rem;
    color: var(--glowny-kolor);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.2);
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.5;
}

/* New Animated Text Styles */
#animated-text {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, var(--glowny-kolor) 50%, #ffffff 100%);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 8s ease infinite;
    transition: opacity 0.6s ease-in-out;
    position: relative;
}

#animated-text span {
    background: linear-gradient(135deg, var(--glowny-kolor), #ff6b6b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

#animated-text.text-entering {
    animation: textEntrance 1s ease-out, gradientShift 8s ease infinite 1s;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes textEntrance {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* About Page Styles - Without Background Image */
.about {
    min-height: 100vh;
    padding: 7rem 0 5rem;
    margin-top: calc(var(--navbar-height) * -1);
    padding-top: var(--navbar-height);
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: left;
    font-weight: 700;
}

.about-intro {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--glowny-kolor);
}

.about-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
}

.about-feature i {
    font-size: 3rem;
    color: var(--glowny-kolor);
    flex-shrink: 0;
}

.about-feature-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.about-feature-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--glowny-kolor);
    color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(217, 4, 41, 0.3);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: scale(1.05);
}

.stat h4 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat p {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    height: fit-content;
}

.about-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(43, 45, 66, 0.9));
    color: white;
    padding: 2.5rem;
    text-align: center;
}

.image-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.image-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.trust-section {
    background: var(--secondary-color);
    padding: 6rem 0;
    margin-top: 5rem;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: white;
    margin-bottom: 3rem;
    font-weight: 700;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.trust-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.trust-item i {
    font-size: 3.5rem;
    color: var(--glowny-kolor);
    margin-bottom: 1.5rem;
}

.trust-item h4 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.trust-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Service Page Styles (Podmiany Marynarzy) */
.special-service {
    min-height: 100vh;
    padding: 7rem 0 3rem;
    margin-top: calc(var(--navbar-height) * -1);
    padding-top: var(--navbar-height);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-hero {
    background: linear-gradient(135deg, var(--glowny-kolor), #b10321);
    color: white;
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 4rem;
}

.service-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.service-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 4.5rem;
    color: var(--glowny-kolor);
    margin-bottom: 2rem;
    display: block;
    text-align: center;
}

.service-card h2 {
    font-size: 2.4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.service-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2.5rem;
    text-align: center;
}

.service-features {
    margin: 3.5rem 0;
}

.service-features h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--light-gray);
    border-radius: 20px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: var(--glowny-kolor);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature i {
    font-size: 3.2rem;
    color: var(--glowny-kolor);
    margin-bottom: 1.5rem;
}

.feature h4 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.service-process {
    margin: 3.5rem 0;
}

.service-process h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 600;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}

.step {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    border-color: var(--glowny-kolor);
    transform: translateY(-5px);
}

.step span {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--glowny-kolor);
    color: white;
    border-radius: 50%;
    line-height: 60px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 5px 15px rgba(217, 4, 41, 0.3);
}

.step h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.sidebar-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.sidebar-card h3 {
    color: var(--glowny-kolor);
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #f0f0f0;
    padding-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.sidebar-card ul {
    list-style: none;
    padding: 0;
}

.sidebar-card li {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.sidebar-card li:hover {
    color: var(--glowny-kolor);
}

.sidebar-card li:last-child {
    border-bottom: none;
}

.sidebar-card li::before {
    content: '✓';
    color: var(--glowny-kolor);
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.emergency {
    background: linear-gradient(135deg, #ff6b6b, var(--glowny-kolor));
    color: white;
    text-align: center;
    border: none;
    padding: 3rem 2.5rem;
}

.emergency h3 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
}

.emergency p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.emergency-btn {
    background: white;
    color: var(--glowny-kolor);
    width: 100%;
    margin-top: 2rem;
    padding: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.emergency-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* City Transport Styles (Transport Berlin Centrum) */
.city-transport {
    min-height: 100vh;
    padding: 7rem 0 3rem;
    margin-top: calc(var(--navbar-height) * -1);
    padding-top: var(--navbar-height);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.city-hero {
    background: linear-gradient(135deg, var(--glowny-kolor), #b10321);
    color: white;
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 4rem;
}

.city-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.city-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.city-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.city-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.city-card {
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.city-card i {
    font-size: 4.5rem;
    color: var(--glowny-kolor);
    margin-bottom: 2rem;
    display: block;
    text-align: center;
}

.city-card h2 {
    font-size: 2.4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.city-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2.5rem;
    text-align: center;
}

.districts-grid {
    margin: 3.5rem 0;
}

.districts-grid h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 600;
}

.district-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.district {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid var(--glowny-kolor);
    transition: transform 0.3s ease;
}

.district:hover {
    transform: translateY(-5px);
}

.district h4 {
    font-size: 1.4rem;
    color: var(--glowny-kolor);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.district ul {
    list-style: none;
    padding: 0;
}

.district li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
    color: #555;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.district li:hover {
    color: var(--glowny-kolor);
}

.district li:last-child {
    border-bottom: none;
}

.district li::before {
    content: '•';
    color: var(--glowny-kolor);
    font-weight: bold;
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.benefits {
    margin: 3.5rem 0;
}

.benefits h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 600;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    border: 3px solid #f0f0f0;
    transition: all 0.3s ease;
}

.benefit:hover {
    border-color: var(--glowny-kolor);
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit i {
    font-size: 3rem;
    color: var(--glowny-kolor);
    flex-shrink: 0;
    margin: 0;
}

.benefit h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.benefit p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.city-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.booking {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2.5rem;
}

.booking h3 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
}

.booking .btn {
    background: white;
    color: #667eea;
    width: 100%;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.phone-link {
    display: block;
    margin-top: 1.5rem;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.phone-link:hover {
    opacity: 0.8;
}

.time-info {
    text-align: center;
}

.time-info p {
    margin: 1rem 0;
    color: #555;
    font-size: 1.05rem;
}

.time {
    display: inline-block;
    background: var(--glowny-kolor);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

/* Airport Transfer Styles */
.airport-transfer {
    min-height: 100vh;
    padding: 7rem 0 3rem;
    margin-top: calc(var(--navbar-height) * -1);
    padding-top: var(--navbar-height);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.airport-hero {
    background: linear-gradient(135deg, var(--glowny-kolor), #b10321);
    color: white;
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 4rem;
}

.airport-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.airport-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.airport-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.airport-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.airport-card {
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.airport-card i {
    font-size: 4.5rem;
    color: var(--glowny-kolor);
    margin-bottom: 2rem;
    display: block;
    text-align: center;
}

.airport-card h2 {
    font-size: 2.4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
}

.airport-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2.5rem;
    text-align: center;
}

.airports-section {
    margin: 3.5rem 0;
}

.airports-section h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 600;
    border-bottom: 3px solid var(--glowny-kolor);
    padding-bottom: 1rem;
}

.airports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.airport {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 20px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.airport:hover {
    border-color: var(--glowny-kolor);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.airport h4 {
    font-size: 1.4rem;
    color: var(--glowny-kolor);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.airport p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.transfer-time {
    display: inline-block;
    background: var(--glowny-kolor);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(217, 4, 41, 0.3);
}

.airport-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid var(--glowny-kolor);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-item i {
    color: var(--glowny-kolor);
    font-size: 1.4rem;
}

.info-item span {
    color: #555;
    font-weight: 500;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid var(--glowny-kolor);
    transition: transform 0.3s ease;
}

.price-item:hover {
    transform: translateX(5px);
}

.price {
    background: var(--glowny-kolor);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
}

.price-note {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: 1.5rem;
    font-style: italic;
}

.urgent {
    background: linear-gradient(135deg, #ff6b6b, var(--glowny-kolor));
    color: white;
    text-align: center;
    padding: 3rem 2.5rem;
}

.urgent-btn {
    background: white;
    color: var(--glowny-kolor);
    width: 100%;
    margin-top: 2rem;
    padding: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.urgent-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Page Styles */
.contact-page {
    min-height: 100vh;
    padding: 7rem 0 3rem;
    margin-top: calc(var(--navbar-height) * -1);
    padding-top: var(--navbar-height);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-hero {
    background: linear-gradient(135deg, var(--glowny-kolor), #b10321);
    color: white;
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 4rem;
}

.contact-hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-method {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-8px);
}

.contact-method i {
    font-size: 3rem;
    color: var(--glowny-kolor);
    margin-bottom: 1.5rem;
}

.contact-method h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.contact-method p {
    color: #555;
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.contact-method span {
    color: #666;
    font-size: 0.95rem;
}

.emergency-contact {
    background: linear-gradient(135deg, #ff6b6b, var(--glowny-kolor));
    color: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.emergency-contact h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.emergency-contact p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.emergency-btn {
    background: white;
    color: var(--glowny-kolor);
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    display: inline-block;
    margin-top: 2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.emergency-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.business-hours {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.business-hours h3 {
    color: var(--glowny-kolor);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 5px solid var(--glowny-kolor);
    transition: transform 0.3s ease;
}

.hour-item:hover {
    transform: translateX(5px);
}

.contact-form-section {
    display: flex;
    flex-direction: column;
}

.form-container {
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.form-container > p {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.input-container {
    position: relative;
    margin-bottom: 0;
}

.input-container label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.05rem;
}

.input-container input,
.input-container select,
.input-container textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Poppins', sans-serif;
}

.input-container input:focus,
.input-container select:focus,
.input-container textarea:focus {
    outline: none;
    border-color: var(--glowny-kolor);
    box-shadow: 0 0 0 4px rgba(217, 4, 41, 0.1);
    background: #fff;
}

.input-container.textarea {
    grid-column: 1 / -1;
}

.input-container textarea {
    min-height: 140px;
    resize: vertical;
}

.submit-btn {
    background: var(--glowny-kolor);
    color: white;
    padding: 1.5rem 2.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #b10321;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.map-section {
    padding: 5rem 0;
    background: white;
    margin-top: 4rem;
}

.map-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.map-container {
    background: var(--light-gray);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    padding: 3rem;
}

.map-placeholder i {
    font-size: 4.5rem;
    color: var(--glowny-kolor);
    margin-bottom: 2rem;
}

.map-placeholder h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.map-placeholder p {
    color: #666;
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
}

/* Updated Footer Styles */
footer {
    background: var(--secondary-color);
    color: #fff;
    padding: 4rem 0 1.5rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    width: 140px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 12px;
    font-weight: 600;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--glowny-kolor);
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: #ddd;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    text-transform: uppercase;
    font-weight: 500;
}

.footer-links ul li a:hover {
    color: var(--glowny-kolor);
    padding-left: 8px;
}

.footer-contact p {
    color: #ddd;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
}

.footer-contact i {
    color: var(--glowny-kolor);
    font-size: 1.2rem;
}

.footer-social .social-icons {
    display: flex;
    gap: 1.2rem;
}

.footer-social .social-icons a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.footer-social .social-icons a:hover {
    background: var(--glowny-kolor);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    color: #aaa;
}

/* Form Input Effects */
.input-container.focus label {
    color: var(--glowny-kolor);
}

.input-container.focus input,
.input-container.focus textarea {
    border-color: var(--glowny-kolor);
}

/* Enhanced Mobile Menu */
@media (max-width: 768px) {
    :root {
        --navbar-height: 80px;
    }

    .navbar {
        position: fixed;
        top: var(--navbar-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--navbar-height));
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 3rem 0;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        gap: 1.5rem;
        backdrop-filter: blur(20px);
    }
    
    .navbar.active {
        left: 0;
    }
    
    .navbar a {
        padding: 1.2rem 2rem;
        font-size: 1.2rem;
        width: 90%;
        text-align: center;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .navbar a:hover {
        background: var(--glowny-kolor);
        color: white;
        transform: translateX(10px);
    }
    
    .navbar a::after {
        display: none;
    }
    
    .logo-img {
        width: 90px !important;
    }

    #menu-icon {
        display: block;
        font-size: 26px;
    }

    /* Responsive Grid Adjustments */
    .home-content {
        padding: 3rem 1.5rem;
    }

    .home-text h1 {
        font-size: 2.5rem;
    }

    .home-text p {
        font-size: 1.2rem;
    }

    .home-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    #animated-text {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-content,
    .service-content,
    .city-content,
    .airport-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-hero h1, 
    .city-hero h1, 
    .airport-hero h1, 
    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .district-group,
    .airports-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .city-card,
    .airport-card,
    .form-container {
        padding: 2.5rem 2rem;
    }

    .about-feature {
        flex-direction: column;
        text-align: center;
    }

    .benefit {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .hour-item {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
}

/* Fix body scroll when menu is open */
body.no-scroll {
    overflow: hidden;
}

/* Additional responsive adjustments */
@media (max-width: 480px) {
    .home-text h1 {
        font-size: 2rem;
    }
    
    .home-text p {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 15px 25px;
        font-size: 0.95rem;
    }
    
    .about-text h1,
    .trust-section h2,
    .map-section h2 {
        font-size: 2.2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .stat {
        padding: 1.5rem 1rem;
    }
    
    .stat h4 {
        font-size: 2rem;
    }

    .service-hero,
    .city-hero,
    .airport-hero,
    .contact-hero {
        padding: 3rem 0;
    }

    .service-card,
    .city-card,
    .airport-card,
    .form-container {
        padding: 2rem 1.5rem;
    }

    #animated-text {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth transitions */
.navbar a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Loading animation for better UX */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.city-card,
.airport-card,
.trust-item,
.feature,
.step,
.contact-method,
.about-feature {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--glowny-kolor);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b10321;
}

/* Typewriter cursor effect */
#typewriter {
   display: none;
}

@keyframes blink {
    0%, 50% { border-color: var(--glowny-kolor); }
    51%, 100% { border-color: transparent; }
}