/* =========================================
   GLOBAL STYLES
   ========================================= */

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* =========================================
   HERO SECTION
   ========================================= */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 85vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 40, 10, 0.35);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(6, 78, 59, 0.3);
    border: 1px solid rgba(65, 197, 113, 0.3);
    border-radius: 50px;
    padding: 10px 25px;
    color: #4ade80;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.hero-label:hover {
    background-color: rgba(6, 78, 59, 0.8);
    border-color: rgba(74, 222, 128, 0.6);
    transform: translateY(-2px);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-title .highlight {
    color: #4ade80;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: #4ade80;
    color: #064e3b;
    border: 2px solid #4ade80;
}

.btn-primary:hover {
    background-color: #22c55e;
    border-color: #22c55e;
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background-color: #fff;
    color: #064e3b;
    border-color: #fff;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    justify-content: center;
}

.stat-item strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.stat-item span {
    font-size: 0.9rem;
    color: #a7f3d0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   PHILOSOPHY SECTION (O NAS / MISJA)
   ========================================= */

.section-philosophy {
    background-color: #0a1f15;
    padding: 100px 0;
    color: #fff;
    position: relative;
    z-index: 1;
}

.philosophy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-image-wrapper {
    position: relative;
}

.philosophy-main-img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    display: block;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bulb-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: #1a2e25;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #0a1f15;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    font-size: 40px;
    line-height: 1;
    cursor: default;
}

.philosophy-content {
}

.section-subtitle {
    display: block;
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
}

.section-title .highlight {
    color: #4ade80;
}

.section-description {
    color: #b0c4b1;
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 1.1rem;
    max-width: 90%;
}

.philosophy-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.philosophy-features li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-color: rgba(74, 222, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
}

.feature-text strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
    color: #fff;
    font-weight: 700;
}

.feature-text p {
    color: #a0aec0;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* =========================================
   MISSION SECTION (NASZA MISJA)
   ========================================= */

.section-mission {
    background-color: #0d2419;
    padding: 100px 0;
    text-align: center;
}

.mission-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.mission-header .section-subtitle {
    display: block;
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.mission-header .section-title {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mission-header .section-description {
    color: #8899a6;
    font-size: 1.1rem;
    line-height: 1.6;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.mission-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mission-card:hover {
    transform: translateY(-8px);
    border-color: rgba(74, 222, 128, 0.4);
    background-color: rgba(255, 255, 255, 0.06);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(74, 222, 128, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.emoji-icon {
    font-size: 32px;
    line-height: 1;
}

.mission-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.mission-card p {
    color: #a0aec0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.mission-footer {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.mission-summary {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    font-style: italic;
}

/* =========================================
   RECRUITMENT AND PRICING SECTION
   ========================================= */

.section-recruitment {
    background-color: #081a12;
    padding: 100px 0;
    color: #fff;
}

.recruitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.recruitment-left .section-title {
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 800;
}

.steps-wrapper {
    position: relative;
    padding-left: 20px;
}

.steps-line {
    position: absolute;
    left: 45px;
    top: 20px;
    bottom: 50px;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.step-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    background-color: #081a12;
    color: #fff;
    transition: all 0.3s ease;
}

.step-number.active {
    background-color: #4ade80;
    border-color: #4ade80;
    color: #064e3b;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
}

.step-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.step-content p {
    margin: 0;
    color: #8899a6;
    line-height: 1.5;
}

.pricing-card {
    background-color: #11291f;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-header h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
}

.packages-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.package-item {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    border-radius: 15px;
    transition: transform 0.2s;
    border: 1px solid transparent;
}

.package-item:hover {
    transform: translateX(5px);
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(74, 222, 128, 0.2);
}

.package-item.highlight-pkg {
    background-color: rgba(74, 222, 128, 0.1);
    border-color: rgba(74, 222, 128, 0.3);
}

.pkg-icon {
    font-size: 24px;
    margin-right: 15px;
}

.pkg-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pkg-name {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
}

.pkg-time {
    color: #a0aec0;
    font-size: 0.85rem;
    margin-top: 2px;
}

.pkg-price {
    color: #4ade80;
    font-weight: 800;
    font-size: 1.2rem;
    white-space: nowrap;
}

.pricing-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 25px 0;
}

.features-title {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.pricing-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #cbd5e0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.pricing-features li::before {
    content: "➔";
    color: #4ade80;
    font-weight: bold;
    flex-shrink: 0;
}

.pricing-extra {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.extra-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #a0aec0;
}

.extra-row:last-child {
    margin-bottom: 0;
}

.extra-row strong {
    color: #fff;
}

.btn-full-white {
    display: block;
    width: 100%;
    background-color: #4ade80;
    color: #000;
    text-align: center;
    padding: 18px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-full-white:hover {
    background-color: #e2e8f0;
    transform: translateY(-2px);
}

/* =========================================
   CONTACT SECTION
   ========================================= */

.contact-section {
    background-color: #0d0d0d;
    padding: 80px 0;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.contact-left {
    flex: 1;
    min-width: 300px;
}

.contact-left h2 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-left .subtitle {
    color: #aaaaaa;
    margin-bottom: 30px;
    font-size: 16px;
}

.phone-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #00C853;
    text-decoration: none;
    margin-bottom: 40px;
}

.cf7-wrapper .contact-input {
    width: 100%;
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 30px;
    padding: 15px 25px;
    margin-bottom: 15px;
    color: #fff;
    font-size: 16px;
    box-sizing: border-box;
}

.cf7-wrapper textarea.contact-input {
    border-radius: 20px;
    height: 120px;
    resize: none;
}

.cf7-wrapper .contact-input:focus {
    border-color: #00C853;
    outline: none;
}

.cf7-wrapper .contact-submit {
    background-color: #00C853;
    color: #000;
    font-weight: 700;
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}

.cf7-wrapper .contact-submit:hover {
    background-color: #00e660;
}

.contact-right {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #222;
}

.map-container iframe {
    filter: invert(90%) hue-rotate(180deg) contrast(90%);
    width: 100%;
    height: 100%;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #333;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    color: #fff;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-footer-info {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    color: #aaa;
    font-size: 14px;
}

.contact-footer-info .info-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =========================================
   REVIEWS SECTION
   ========================================= */

.reviews-section {
    background-color: #0d0d0d;
    padding: 80px 0;
    color: #fff;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 700;
}

.reviews-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.review-card {
    background-color: #161a16;
    border: 1px solid #2a2a2a;
    border-radius: 24px;
    padding: 35px;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #00C853;
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.quote-mark {
    font-size: 4rem;
    line-height: 2rem;
    color: #1b3a25;
    font-family: serif;
}

.review-content {
    color: #d1d1d1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img img,
.avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-placeholder {
    background-color: #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-details h4 {
    margin: 0;
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
}

.author-details span {
    font-size: 0.85rem;
    color: #666;
}

/* =========================================
   MEDIA QUERIES
   ========================================= */

/* Mobile RWD (Poniżej 768px - Telefony) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        border-top: none;
    }

    .hero-container {
        padding: 1rem;
        padding-top: 4rem;
    }

    .philosophy-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .philosophy-image-wrapper {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .bulb-badge {
        bottom: -15px;
        right: -10px;
        width: 60px;
        height: 60px;
    }

    .bulb-icon {
        width: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .philosophy-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .mission-header .section-title {
        font-size: 2.2rem;
    }

    .mission-card {
        align-items: center;
        text-align: center;
    }

    .recruitment-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .steps-line {
        display: none;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .phone-number {
        font-size: 32px;
    }

    .reviews-grid {
        flex-direction: column;
        align-items: center;
    }

    .review-card {
        width: 100%;
    }

    .bulb-badge {
        right: 0 !important;
        bottom: -20px !important;
        width: 60px !important;
        height: 60px !important;
        font-size: 30px !important;
    }

    .reviews-grid {
        flex-direction: column;
        padding: 0 10px;
    }

    .review-card {
        min-width: 0 !important;
        width: 100% !important;
        margin-bottom: 20px;
    }

    .philosophy-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .philosophy-image-wrapper {
        width: 100%;
        max-width: 100%;
        margin-right: 0;
    }

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

    .recruitment-grid {
        grid-template-columns: 1fr !important;
    }

    .steps-line {
        display: none;
    }

    .recruitment-left,
    .recruitment-right {
        width: 100%;
        padding: 0 10px;
    }
}

/* Mobile RWD (Poniżej 992px) */
@media (max-width: 992px) {
    .section-philosophy {
        padding: 60px 0;
    }

    .philosophy-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .philosophy-image-wrapper {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .bulb-badge {
        bottom: -15px;
        right: -10px;
        width: 60px;
        height: 60px;
    }

    .bulb-icon {
        width: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .philosophy-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .mission-header .section-title {
        font-size: 2.2rem;
    }

    .mission-card {
        align-items: center;
        text-align: center;
    }

    .recruitment-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .steps-line {
        display: none;
    }
}

/* Mobile RWD (Poniżej 500px) */
@media (max-width: 500px) {
    .package-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .pkg-price {
        margin-top: 10px;
        align-self: flex-end;
    }
}