body {
    margin: 0;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

/* Pasek nawigacji - wycentrowany na komputerze */
.navbar {
    background-color: #2b2b2b;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 60px;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    gap: 6px;
}

.logo-text .flying {
    color: #ffffff;
}

.logo-text .bee {
    color: #f07e13;
}

/* Sekcja linków */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px; 
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-links a:not(.active):hover {
    color: #f07e13;
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.nav-links a.active {
    color: #ffffff;
    background-color: #f07e13;
    box-shadow: 0 4px 12px rgba(240, 126, 19, 0.4);
}

/* --- STYLE SLIDERA --- */
.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #2b2b2b;
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-text {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(43, 43, 43, 0.75);
    color: #ffffff;
    padding: 15px 40px;
    font-size: 24px;
    font-weight: 700;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    width: 80%;
    max-width: 700px;
    box-sizing: border-box;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(43, 43, 43, 0.5);
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover, .next:hover {
    background-color: #f07e13;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

/* --- TREŚĆ GŁÓWNA --- */
.content {
    padding: 0;
}

/* --- SEKCJA O NAS --- */
.about-us {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.about-header, .equipment-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header .highlight, .equipment-header .highlight, .offer-text .highlight, .opinions-header .highlight, .gallery-header-box .highlight, .contact-header .highlight {
    color: #f07e13;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.about-header h2, .equipment-header h2, .opinions-header h2, .gallery-header-box h2, .contact-header h2 {
    font-size: 36px;
    color: #2b2b2b;
    margin: 10px 0 20px;
}

.about-header p, .equipment-header p, .opinions-header p, .contact-header p {
    color: #666;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
    box-sizing: border-box;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-bottom: 4px solid #f07e13;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-card h3 {
    color: #2b2b2b;
    font-size: 22px;
    margin-bottom: 15px;
}

.about-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* --- SEKCJA KOMU POMAGAMY --- */
.who-we-help {
    background-color: #2b2b2b;
    color: #ffffff;
    padding: 80px 40px;
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.help-text {
    flex: 1;
    min-width: 280px;
}

.help-text .highlight-dark {
    color: #f07e13;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.help-text h2 {
    font-size: 36px;
    margin: 0 0 20px;
    line-height: 1.3;
}

.help-text p {
    color: #cccccc;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.help-text .quote {
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    color: #f07e13;
    border-left: 4px solid #f07e13;
    padding-left: 20px;
    margin-top: 35px;
}

.help-list {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.help-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #f07e13;
    padding: 20px 25px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.help-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.help-icon {
    font-size: 32px;
}

.help-desc {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

/* --- SEKCJA SPRZĘT --- */
.our-equipment {
    background-color: #f4f5f7;
    padding: 50px 40px; 
}

.equipment-container {
    max-width: 1000px; 
    margin: 0 auto;
}

.equipment-row {
    display: flex;
    align-items: center;
    gap: 40px; 
    margin-bottom: 40px; 
    flex-wrap: wrap;
}

.equipment-row.reverse {
    flex-direction: row-reverse;
}

.equipment-image-box {
    flex: 1 1 360px;
    max-width: 360px; 
    height: 240px; 
    border-radius: 16px;
    overflow: hidden; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    background-color: #ffffff; 
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.eq-img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
    padding: 15px; 
    box-sizing: border-box;
}

.equipment-info {
    flex: 1;
    min-width: 280px;
}

.equipment-info h3 {
    font-size: 28px;
    color: #2b2b2b;
    margin: 0 0 5px;
}

.eq-subtitle {
    display: inline-block;
    background-color: rgba(240, 126, 19, 0.1);
    color: #f07e13;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 15px;
}

.equipment-info p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.eq-specs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.eq-specs li {
    background-color: #ffffff;
    padding: 10px 16px;
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    color: #444;
    font-size: 14px;
    border-left: 3px solid #f07e13;
}

.eq-specs li strong {
    color: #2b2b2b;
}

/* --- STOPKA Z LINKIEM POD KONTAKTEM --- */
.site-footer {
    background-color: #2b2b2b;
    padding: 40px 40px;
    display: flex;
    justify-content: center;
}

.footer-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px; /* Odstęp między kontaktem a linkiem do polityki */
    width: 100%;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
}

.contact-link, .contact-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #f07e13;
    text-decoration: underline;
    transform: translateY(-2px);
}

.footer-icon {
    width: 24px;
    height: 24px;
}

.footer-policy-link a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-policy-link a:hover {
    color: #f07e13;
    text-decoration: underline;
}

/* --- ANIMACJE --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- STYLE DLA OFERTY --- */
.offer-panel {
    padding: 60px 40px;
    background-color: #ffffff;
}

.offer-panel:nth-child(even) {
    background-color: #f4f5f7;
}

.offer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.offer-panel:nth-child(even) .offer-container {
    flex-direction: row-reverse;
}

.offer-image-box {
    flex: 1 1 350px;
    max-width: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    background-color: #fff;
    box-sizing: border-box;
}

.offer-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.offer-text {
    flex: 2 1 350px;
}

.offer-text h2 {
    font-size: 38px;
    color: #2b2b2b;
    margin: 0 0 25px;
}

.offer-text p {
    color: #555;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 35px 0;
}

.offer-grid-item {
    background: #f9f9f9;
    padding: 25px 20px;
    border-radius: 12px;
    border-left: 4px solid #f07e13;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.offer-panel:nth-child(even) .offer-grid-item {
    background: #ffffff;
}

.offer-grid-item h4 {
    margin: 0 0 10px 0;
    color: #2b2b2b;
    font-size: 18px;
}

.offer-grid-item p {
    margin: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.offer-benefits h3 {
    font-size: 22px;
    color: #2b2b2b;
    margin-bottom: 20px;
}

.offer-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-benefits li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
    color: #444;
}

.offer-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #f07e13;
    font-weight: bold;
    font-size: 18px;
}

.offer-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0 20px;
}

.offer-quote {
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    color: #f07e13;
    border-left: 4px solid #f07e13;
    background: rgba(240, 126, 19, 0.05);
    padding: 15px 25px;
    margin-top: 30px;
    border-radius: 0 8px 8px 0;
    line-height: 1.5;
}

/* --- STYLE DLA OPINIE --- */
.opinions-section {
    padding: 80px 40px;
    background-color: #f4f5f7;
    min-height: 60vh;
}

.opinions-container {
    max-width: 1200px;
    margin: 0 auto;
}

.opinions-header {
    text-align: center;
    margin-bottom: 50px;
}

.opinions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.opinion-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #f07e13;
    box-sizing: border-box;
}

.opinion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.stars {
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.opinion-text {
    color: #444;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.author {
    color: #2b2b2b;
    font-weight: 700;
    font-size: 15px;
    text-align: right;
}

/* --- GALERIA --- */
.gallery-section {
    padding: 80px 40px;
    background-color: #ffffff;
    min-height: 70vh;
}

.gallery-container-large {
    max-width: 1300px;
    margin: 0 auto;
}

.gallery-header-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.gallery-header-box h2 {
    font-size: 38px;
    color: #2b2b2b;
    margin: 10px 0 20px 0;
}

.gallery-header-box p {
    color: #555;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.gallery-divider {
    width: 60px;
    height: 4px;
    background-color: #f07e13;
    margin: 25px auto;
    border-radius: 2px;
}

.gallery-hint {
    display: inline-block;
    background-color: rgba(240, 126, 19, 0.08);
    color: #d66b10;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.gallery-grid-extended {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.gallery-item-ext {
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
    cursor: pointer;
    background-color: #2b2b2b;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item-ext:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.gallery-item-ext img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(43, 43, 43, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item-ext:hover img {
    transform: scale(1.1);
}

.gallery-item-ext:hover .gallery-overlay {
    opacity: 1;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #f07e13;
}

/* --- KONTAKT --- */
.contact-section {
    padding: 80px 40px;
    background-color: #f4f5f7;
    min-height: 60vh;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-info-box, .contact-form-box {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    box-sizing: border-box;
}

.contact-info-box h3, .contact-form-box h3 {
    font-size: 24px;
    color: #2b2b2b;
    margin-top: 0;
    margin-bottom: 25px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 17px;
    font-weight: 600;
    word-break: break-all;
}

.contact-detail-item a {
    color: #2b2b2b;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-detail-item a:hover {
    color: #f07e13;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #f07e13;
}

.submit-btn {
    background-color: #f07e13;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.submit-btn:hover {
    background-color: #d66b10;
    transform: translateY(-2px);
}

/* ==========================================================
   MOBILNA RESPONSYWNOŚĆ (DLA TELEFONÓW I TABLETÓW)
   ========================================================== */
@media (max-width: 900px) {
    .navbar {
        flex-direction: column;
        padding: 15px 20px;
        gap: 15px;
    }

    .logo-container {
        margin-right: 0;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .nav-links a {
        font-size: 14px;
        padding: 8px 12px;
    }

    .slider-container {
        height: 350px;
    }

    .slide-text {
        font-size: 16px;
        padding: 12px 20px;
        bottom: 10%;
        width: 90%;
    }

    .prev, .next {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .about-us, .who-we-help, .our-equipment, .offer-panel, .opinions-section, .gallery-section, .contact-section {
        padding: 40px 20px;
    }

    .about-header h2, .equipment-header h2, .opinions-header h2, .gallery-header-box h2, .contact-header h2, .offer-text h2, .help-text h2 {
        font-size: 26px !important;
    }

    .about-header p, .equipment-header p, .opinions-header p, .gallery-header-box p, .contact-header p, .offer-text p, .help-text p {
        font-size: 15px !important;
    }

    .offer-container, .equipment-row, .equipment-row.reverse, .help-container, .contact-container {
        flex-direction: column !important;
        gap: 30px;
    }

    .offer-image-box, .equipment-image-box {
        width: 100%;
        max-width: 100%;
        height: 220px;
    }

    .gallery-grid-extended {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }

    .gallery-item-ext {
        height: 130px;
    }

    .contact-info-box, .contact-form-box {
        padding: 25px 20px;
    }
}