/* ====================================
   NEW BADGE STYLES (NOWOŚĆ)
   ==================================== */

.new-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
    vertical-align: middle;
    animation: pulse-badge 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.new-badge-inline {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 10px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.page-new-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    display: inline-block;
}

.service-new-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 16px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    z-index: 10;
}

@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(255, 107, 107, 0.5);
    }
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* ====================================
   LANDING PAGE STYLES
   ==================================== */

.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cta-button-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta-button-secondary:hover {
    background: white;
    color: var(--primary-color);
}

.services-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-card-featured {
    border: 2px solid var(--primary-color);
}

.service-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.service-link:hover {
    text-decoration: underline;
}

.benefits-section {
    padding: 60px 20px;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.benefit-item p {
    font-size: 14px;
    color: var(--text-light);
}

.pricing-teaser {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    text-align: center;
    color: white;
}

.pricing-teaser-text {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-preview {
    padding: 60px 20px;
    background: var(--bg-light);
    text-align: center;
}

.portfolio-preview-text {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-dark);
}

.final-cta {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button-large {
    font-size: 20px;
    padding: 18px 48px;
}

/* ====================================
   PAGE HERO STYLES
   ==================================== */

.page-hero {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-hero-glambot {
    position: relative;
}

.page-hero-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 16px;
    line-height: 1.6;
    opacity: 0.95;
}

/* ====================================
   CONTENT SECTIONS
   ==================================== */

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

.bg-white {
    background: white;
}

.bg-light {
    background: var(--bg-light);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
}

.section-title-light {
    color: white;
}

.section-title-light::after {
    background: white;
}

.content-text-centered {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
}

.for-whom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.for-whom-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.bg-light .for-whom-item {
    background: white;
}

.bg-white .for-whom-item {
    background: var(--bg-light);
}

.for-whom-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.for-whom-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.for-whom-item ul {
    list-style: none;
    padding: 0;
}

.for-whom-item li {
    padding: 8px 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.for-whom-item li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 8px;
}

/* ====================================
   PROCESS/TIMELINE STYLES
   ==================================== */

.process-steps {
    max-width: 900px;
    margin: 40px auto 0;
}

.process-step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.process-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.process-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.process-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

/* ====================================
   WHY US GRID
   ==================================== */

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.why-us-item {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.why-us-item-light {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.why-us-check {
    font-size: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.why-us-item-light .why-us-check {
    color: white;
}

.why-us-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.why-us-item-light h3 {
    color: white;
}

.why-us-item p {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 4px;
}

.why-us-item-light p {
    color: rgba(255, 255, 255, 0.9);
}

/* ====================================
   PRICING SECTION
   ==================================== */

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.pricing-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.pricing-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.pricing-card-popular {
    border: 2px solid var(--primary-color);
    position: relative;
}

.pricing-badge {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.pricing-badge-popular {
    color: var(--primary-color);
}

.popular-label {
    background: var(--primary-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 16px;
}

.pricing-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.pricing-header {
    margin-bottom: 20px;
}

.pricing-capacity {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-duration {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 4px;
}

.pricing-price {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.price-amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    font-size: 16px;
    color: var(--text-light);
    margin-left: 8px;
}

.pricing-features h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.pricing-features li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 15px;
}

.pricing-note {
    background: var(--bg-light);
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.pricing-button-popular {
    background: var(--primary-color);
}

.pricing-teaser-section {
    padding: 60px 20px;
    background: var(--bg-light);
    text-align: center;
}

.pricing-additional {
    max-width: 700px;
    margin: 40px auto 0;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.pricing-additional h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.pricing-additional ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-additional li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    color: var(--text-dark);
}

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

/* ====================================
   FILTER TABS (REALIZACJE)
   ==================================== */

.portfolio-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.portfolio-section .load-more-container {
    text-align: center !important;
    width: 100%;
    display: block;
}

.portfolio-section .load-more-btn {
    margin-left: auto;
    margin-right: auto;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 32px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-tab.active {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border-color: transparent;
}

.gallery-category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(228, 64, 95, 0.9);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 12px;
    z-index: 5;
}

.glambot-badge {
    background: rgba(255, 107, 107, 0.9);
}

.gallery-item-hidden {
    display: none !important;
}

/* ====================================
   REALIZACJE VIDEOS
   ==================================== */

.realizacje-videos {
    padding: 60px 20px;
    background: white;
}

.realizacje-description {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
}

/* ====================================
   HOW IT WORKS - TIMELINE
   ==================================== */

.how-it-works-section {
    padding: 60px 20px;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
}

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    width: 2px;
    height: calc(100% + 40px);
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.timeline-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(131, 58, 180, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.requirement-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.requirement-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.requirement-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.requirement-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

/* ====================================
   FAQ SECTION
   ==================================== */

.faq-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.faq-categories {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary-color);
}

.faq-item {
    background: white;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: white;
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 16px;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 20px 24px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

/* ====================================
   ABOUT PAGE
   ==================================== */

.about-section {
    padding: 60px 20px;
    background: white;
}

.stats-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.value-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

/* ====================================
   CONTACT PAGE
   ==================================== */

.contact-page-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-box,
.quote-form-box {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.contact-info-box h2,
.quote-form-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-info-box>p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item-large {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 12px;
}

.contact-item-large h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.contact-item-large p,
.contact-item-large a {
    font-size: 16px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item-large a:hover {
    color: var(--primary-color);
}

.response-time {
    margin-top: 30px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.response-time p {
    font-size: 14px;
    color: var(--text-dark);
}

/* ====================================
   RESPONSIVE - NEW STYLES
   ==================================== */

@media (max-width: 768px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

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

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

    .page-title {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .page-hero-header {
        flex-direction: column;
    }

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

    .filter-tabs {
        gap: 8px;
    }

    .filter-tab {
        padding: 10px 20px;
        font-size: 14px;
    }

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

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

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

    .process-step {
        gap: 16px;
    }

    .process-number,
    .timeline-marker {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .timeline-item::after {
        left: 22px;
    }

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

    .stat-number {
        font-size: 36px;
    }

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

    .faq-question {
        font-size: 16px;
        padding: 16px 20px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 0;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--border-color);
        padding: 12px 0;
    }

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

    .new-badge {
        font-size: 8px;
        padding: 3px 8px;
        margin-left: 6px;
    }

    .page-title {
        font-size: 26px;
    }

    .for-whom-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

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

    .timeline-item:not(:last-child)::after {
        top: 30px !important;
        left: 21px !important;
    }

    .pricing-card {
        padding: 24px;
    }

    .price-amount {
        font-size: 34px;
    }

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