/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

a:visited {
    color: inherit;
}

a:active {
    color: inherit;
}

input,
button,
select,
textarea {
    font-family: inherit;
    -webkit-appearance: none;
    appearance: none;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #0a0a0f;
    color: #fff;
    overflow-x: hidden;
}


/* Navbar */
.navbar {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(12, 12, 31, 0.5));
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.navbar .logo {
    font-size: 28px;
    font-weight: bold;
    color: white;
}

.navbar .logo span {
    color: #00e6ff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    position: relative;
}

.nav-links a::after {
    content: "";
    height: 2px;
    background: #00e6ff;
    width: 0;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.login-btn {
    background: linear-gradient(135deg, #00e6ff, #00ffa1);
    color: #000;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
    box-shadow: 0 0 10px #00e6ff60;
}

.login-btn:hover {
    background: #00e6ff;
    color: #000;
    box-shadow: 0 0 15px #00ffa1;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('banner/urban-bg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 20, 0.7);
    z-index: 1;
}

.content {
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    width: 100%;
}

.text-content {
    max-width: 50%;
}

.text-content h2 {
    color: #00e6ff;
    font-size: 24px;
}

.text-content h1 {
    font-size: 52px;
    margin: 20px 0;
}

.text-content h1 span {
    color: #00e6ff;
}

.btn-glow {
    background: linear-gradient(135deg, #00e6ff, #00ffa1);
    color: #000;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 0 20px #00e6ff80;
}

.btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px #00ffa1cc;
}

/* Van Image */
.image-content img {
    max-height: 400px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 1.5s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }

    from {
        opacity: 0;
        transform: translateY(30px);
    }
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    .text-content {
        max-width: 100%;
    }

    .image-content img {
        margin-top: 30px;
        width: 90%;
    }
}


/* Offer Section */
/* Oferta - nowoczesny styl */
.offer-section {
    padding: 100px 40px;
    background: #0d0d15;
    text-align: center;
    overflow: hidden;
}

.section-title h2 {
    font-size: 38px;
    color: #00e6ff;
    margin-bottom: 10px;
}

.line-glow {
    height: 3px;
    width: 80px;
    margin: 0 auto 60px auto;
    background: linear-gradient(to right, #00e6ff, #00ffa1);
    box-shadow: 0 0 15px #00e6ff;
    border-radius: 50px;
}

/* Grid */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Boxy */
.offer-box {
    background: #151522;
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px #00000060;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.offer-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px #00e6ff80;
}

.icon-wrapper {
    background: radial-gradient(circle, #00e6ff33, transparent);
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-box i {
    font-size: 32px;
    color: #00e6ff;
}

.offer-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.offer-box p {
    font-size: 14px;
    color: #bbb;
}

/* Scroll reveal animation */
.fade-up {
    animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Płynny scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 28px;
    }

    .icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .offer-box i {
        font-size: 28px;
    }
}

.offer-box.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}




/* Footer */
.footer-section {
    background-color: #0a0a10;
    color: #ccc;
    padding: 60px 40px 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-brand h2 {
    font-size: 28px;
    color: white;
}

.footer-brand h2 span {
    color: #00e6ff;
}

.footer-brand p {
    font-size: 14px;
    margin-top: 10px;
    color: #aaa;
}

.footer-info h4,
.footer-social h4 {
    color: #00e6ff;
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-info p,
.footer-social p {
    font-size: 14px;
    margin: 6px 0;
}

.footer-info i,
.footer-social i {
    margin-right: 8px;
    color: #00e6ff;
}

.social-icons a {
    color: #00e6ff;
    font-size: 20px;
    margin-right: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #00ffa1;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
}




/* FAQ Section */
.faq-section {
    background-color: #0b0b14;
    padding: 100px 40px;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.faq-item input {
    display: none;
}

.faq-item label {
    font-size: 18px;
    color: #00e6ff;
    display: block;
    cursor: pointer;
    padding: 10px 0;
    position: relative;
    font-weight: 600;
}

.faq-item label::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 10px;
    font-size: 24px;
    transition: transform 0.3s;
}

.faq-item input:checked+label::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
}

.faq-item input:checked~.faq-answer {
    max-height: 500px;
    opacity: 1;
    margin-top: 10px;
}

@media (max-width: 480px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 20px;
        gap: 10px;
        flex-wrap: wrap;
    }

    .logo {
        font-size: 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .login-btn {
        font-size: 14px;
        padding: 6px 16px;
        white-space: nowrap;
    }

    .content {
        flex-direction: row;
        padding: 0 20px;
        gap: 20px;
        justify-content: space-between;
        align-items: center;
    }

    .text-content {
        max-width: 55%;
    }

    .text-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .btn-glow {
        font-size: 14px;
        padding: 10px 24px;
    }

    .image-content {
        max-width: 45%;
    }

    .image-content img {
        width: 100%;
        max-height: 260px;
        margin-top: 0;
    }


    .offer-section {
        padding: 60px 20px;
    }

    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .offer-box {
        padding: 20px;
    }

    .offer-box h3 {
        font-size: 18px;
    }

    .offer-box p {
        font-size: 13px;
    }

    .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .offer-box i {
        font-size: 24px;
    }

    .faq-section {
        padding: 60px 20px;
    }

    .faq-item label {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .footer-section {
        padding: 50px 20px 20px 20px;
    }

    .footer-brand h2 {
        font-size: 22px;
    }

    .footer-info h4,
    .footer-social h4 {
        font-size: 14px;
    }

    .footer-info p,
    .footer-social p {
        font-size: 13px;
    }

    .footer-info a,
    .footer-social a {
        font-size: 14px;
        color: #00e6ff;
        text-decoration: none;
    }

    .footer-info a:hover,
    .footer-social a:hover {
        color: #00ffa1;
    }

    .social-icons a {
        font-size: 18px;
        color: #00e6ff;
    }

    .social-icons a:hover {
        color: #00ffa1;
    }
}