/*
Theme Name: Intenti - GreenEdge Solutions Theme
Theme URI: -
Author: Intenti Marek Błaytka
Author URI: https://intenti.pl
Description: Dedykowany motyw dla strony GreenEdge Solutions,.
Version: 1.0
*/

:root {
    --primary-green: #2e7d32;
    --secondary-green: #4caf50;
    --accent-green: #8bc34a;
    --gradient-1: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    --gradient-2: linear-gradient(135deg, #4caf50 0%, #8bc34a 100%);
    --gradient-3: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
}

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

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Header z Twojej strony */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: #f8f9fa;
    padding: 8px 0;
    font-size: 14px;
}

.header-top a {
    color: inherit;
    text-decoration: none;
    font-weight: normal;
}

.header-top a:hover {
    color: #4caf50
    text-decoration: underline;
}

.header-main {
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 120px;
    height: 78px;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green);
}

.header .dropdown-menu {
    min-width: 200px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.1);
    background: #fff;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.header .dropdown-item {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: background 0.2s, color 0.2s;
}

.header .dropdown-item:hover,
.header .dropdown-item:focus {
    background: var(--gradient-1, #2e7d32);
    color: #fff;
}

.header .dropdown-toggle::after {
    display: none; /* Ukryj domyślną strzałkę Bootstrap */
}

.btn-primary {
    background: var(--gradient-1);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #4caf50 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>')
        center/cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    color: white;
}

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

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

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

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}
.floating-icon:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}
.floating-icon:nth-child(3) {
    top: 30%;
    left: 70%;
    animation-delay: 4s;
}
.floating-icon:nth-child(4) {
    top: 70%;
    left: 20%;
    animation-delay: 1s;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: bold;
}

.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background: white;
}

.why-us-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    border-left: 5px solid var(--secondary-green);
    transition: all 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.why-us-card h4 {
    color: var(--primary-green);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.why-us-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: white;
    position: relative;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    /* Usuń pozycjonowanie, które wymusza środek */
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

/* .process-step::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 100px;
    background: var(--gradient-1);
    z-index: 1;
} */

.process-step:last-child::before {
    display: none;
}

/* Zmieniamy pozycjonowanie numeru na statyczne i przesuwamy na lewo */
.process-number {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    margin-right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 2;
    flex-shrink: 0;
}

.process-step:nth-child(even) .process-number {
    margin-left: 2rem;
    margin-right: 0;
}

/* Dostosuj .process-content, aby nie nachodził na numer */
.process-content {
    flex: 1;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    border-radius: 15px;
    margin: 0;
    position: relative;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient-3);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="300" fill="rgba(255,255,255,0.05)"/><circle cx="800" cy="800" r="250" fill="rgba(255,255,255,0.05)"/></svg>')
        center/cover;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: white;
    color: var(--primary-green);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 10px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    color: var(--primary-green);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: var(--secondary-green);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: var(--secondary-green);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

footer ul {
    padding: 5px;
}
footer li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: 90vh;
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero-stats {
        margin-top: 2rem;
    }

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

    .services {
        padding: 80px 0;
    }

    .process {
        padding: 80px 0;
    }

    .cta {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }

    .header-main {
        padding: 10px 0;
    }

    .hero {
        min-height: 100vh;
        padding: 40px 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .hero .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
        padding: 12px 20px;
    }

    .hero .d-flex {
        flex-direction: column;
        gap: 10px !important;
    }

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

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-visual {
        margin-top: 2rem;
        display: none;
    }

    .floating-icon {
        font-size: 2rem;
    }

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

    .section-title p {
        font-size: 1rem;
    }

    .services {
        padding: 60px 0;
    }

    .service-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }

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

    .service-icon i {
        font-size: 1.5rem;
    }

    .process {
        padding: 60px 0;
    }

    .process-step {
        flex-direction: column !important;
        align-items: flex-start;
    }

    .process-number {
        margin: 0 0 1rem 0 !important;
        align-self: center;
        left: 0;
        top: 0;
        transform: none;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .process-content {
        margin: 0;
        padding: 1.5rem;
        width: 100%;
    }

    .process-content h3 {
        font-size: 1.3rem;
    }

    .cta {
        padding: 60px 0;
    }

    .cta h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .cta p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-cta {
        display: block;
        width: 100%;
        margin: 5px 0;
        padding: 12px 30px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

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

    .stat-item {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(10px);
    }

    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }

    .stat-label {
        font-size: 0.7rem;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .process-step {
        flex-direction: column !important;
        align-items: flex-start;
    }

    .process-number {
        margin: 0 0 1rem 0 !important;
        align-self: center;
        left: 0;
        top: 0;
        transform: none;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .process-content {
        margin: 0;
        padding: 1.5rem;
        width: 100%;
    }

    .cta h2 {
        font-size: 1.6rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 20px 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 1rem;
    }

    .hero-visual {
        display: none;
    }
}

/* Touch-friendly buttons on mobile */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .btn-cta {
        min-height: 44px;
        padding: 12px 24px;
    }

    .service-card {
        transition: none;
    }

    .service-card:hover {
        transform: none;
    }

    .service-icon {
        transition: none;
    }

    .service-card:hover .service-icon {
        transform: none;
    }
}

/* --- SINGLE SERVICE PAGE --- */

.service-offer-bg {
    background: var(--light-bg);
    padding: 40px 0 40px 0;
    min-height: 100vh;
}

.service-offer-main {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 40px 32px 32px 32px;
}

.service-offer-callout {
    background: var(--accent-green);
    color: #fff;
    border-radius: 12px;
    padding: 18px 24px;
    margin: 0 10px 32px 10px;
    font-size: 1.15em;
    box-shadow: 0 2px 12px rgba(46, 125, 50, 0.08);
}

.service-section {
    margin-bottom: 38px;
    padding: 20px;
}

.service-section .section-title h2 {
    color: var(--primary-green);
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.service-benefit {
    margin-bottom: 18px;
    padding: 0 25px;
}

.service-benefit h3 {
    color: var(--secondary-green);
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 25px;
}

.checklist {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.checklist li {
    position: relative;
    padding-left: 2em;
    margin-bottom: 7px;
    color: #333;
    font-size: 1em;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-green);
    font-weight: bold;
    font-size: 1.1em;
}

.how-it-works-list {
    counter-reset: step;
    list-style: none;
    padding-left: 0;
}

.how-it-works-list li {
    background: #f4f8f4;
    border-radius: 12px;
    margin-bottom: 18px;
    padding: 18px 20px 10px 60px;
    position: relative;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.04);
}

.how-it-works-list li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 18px;
    top: 18px;
    width: 32px;
    height: 32px;
    background: var(--gradient-1, linear-gradient(135deg, #2e7d32 0%, #4caf50 100%));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.08);
}

.pricing-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.pricing-card {
    flex: 1 1 260px;
    background: #f4f8f4;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.04);
    padding: 24px 18px 18px 18px;
    margin-bottom: 12px;
    text-align: center;
}

.pricing-card h3 {
    color: var(--primary-green);
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 25px;
}

.price-main {
    font-size: 2em;
    font-weight: 700;
    color: var(--secondary-green);
    margin-bottom: 6px;
}

.price-note {
    font-size: 0.7em;
    color: #888;
    font-weight: 400;
}

.price-details {
    list-style: none;
    padding: 0;
    margin: 0 0 0 0;
    text-align: left;
}

.price-details li {
    padding-left: 0;
    margin-bottom: 6px;
    color: #333;
    font-size: 1em;
}

.pricing-footer {
    font-size: 0.95em;
    color: #555;
}

.billing-example-box {
    background: #e8f5e8;
    border-radius: 12px;
    padding: 18px 22px;
    margin-top: 18px;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.04);
}

.billing-example-box h4 {
    color: var(--primary-green);
    font-size: 1.05em;
    font-weight: 600;
    margin-bottom: 7px;
}

.example-calculation {
    list-style: none;
    padding: 0;
    margin: 0 0 7px 0;
}

.example-calculation li {
    margin-bottom: 4px;
    font-size: 1em;
    color: #333;
}

.example-roi {
    font-weight: 600;
    color: var(--secondary-green);
    font-size: 1.05em;
    margin-top: 7px;
}

@media (max-width: 900px) {
    .service-offer-main {
        padding: 24px 8px;
    }
    .pricing-grid {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .service-offer-main {
        padding: 10px 2px;
    }
    .service-section .section-title h2 {
        font-size: 1.15em;
    }
    .pricing-card {
        padding: 16px 6px 12px 6px;
    }
    .billing-example-box {
        padding: 10px 6px;
    }
}

.hero-service {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 50%, #4caf50 100%);
    color: #fff;
    padding: 60px 0 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 32px;
    min-height: 40vh;
}
.hero-service h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}
.hero-service .offer-subtitle {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.92);
}
.hero-service .offer-limited {
    font-size: 1.05rem;
    color: #ffe082;
    font-weight: 600;
    margin-bottom: 0;
}
@media (max-width: 600px) {
    .hero-service h1 {
        font-size: 1.5rem;
    }
    .hero-service .offer-subtitle {
        font-size: 1rem;
    }
}

/* Hero Graphic Styles dla single-service */
.hero-service .hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.hero-graphic-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    animation: float 6s ease-in-out infinite;
}

/* Style dla wersji bez grafiki - wycentrowany tekst */
.hero-service .text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-service .text-center h1 {
    margin-bottom: 1.5rem;
}

.hero-service .text-center .offer-subtitle {
    margin-bottom: 1rem;
}

.hero-service .text-center .offer-limited {
    margin-bottom: 0;
}

/* Responsive adjustments dla hero graphic */
@media (max-width: 992px) {
    .hero-service .hero-visual {
        min-height: 300px;
        margin-top: 2rem;
    }

    .hero-graphic-image {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-service .hero-visual {
        min-height: 250px;
        margin-top: 1.5rem;
    }

    .hero-graphic-image {
        max-height: 250px;
    }

    .hero-service .text-center {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-service .hero-visual {
        min-height: 200px;
        margin-top: 1rem;
    }

    .hero-graphic-image {
        max-height: 200px;
    }
}

/* Hero Graphic Styles Home page */
.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-graphic {
    position: relative;
    width: 100%;
    height: 500px;
    max-width: 600px;
}

.graphic-circle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.graphic-circle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.graphic-circle i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 2rem;
}

.graphic-circle-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.graphic-circle-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 10%;
    animation-delay: 1s;
}

.graphic-circle-3 {
    width: 140px;
    height: 140px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.graphic-circle-4 {
    width: 90px;
    height: 90px;
    bottom: 20%;
    right: 25%;
    animation-delay: 3s;
}

.graphic-circle-5 {
    width: 160px;
    height: 160px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
    background: rgba(255, 255, 255, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.graphic-circle-5 i {
    font-size: 3rem;
}

.graphic-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    height: 1px;
    animation: lineFlow 8s linear infinite;
}

.line-1 {
    top: 25%;
    left: 0;
    width: 100%;
    animation-delay: 0s;
}

.line-2 {
    top: 50%;
    left: 0;
    width: 100%;
    animation-delay: 2s;
}

.line-3 {
    top: 75%;
    left: 0;
    width: 100%;
    animation-delay: 4s;
}

.line-4 {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: lineFlowVertical 6s linear infinite;
    animation-delay: 1s;
}

@keyframes lineFlow {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes lineFlowVertical {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

/* Responsive adjustments for hero graphic */
@media (max-width: 1200px) {
    .hero-graphic {
        height: 400px;
        max-width: 500px;
    }

    .graphic-circle-1 {
        width: 100px;
        height: 100px;
    }

    .graphic-circle-2 {
        width: 80px;
        height: 80px;
    }

    .graphic-circle-3 {
        width: 120px;
        height: 120px;
    }

    .graphic-circle-4 {
        width: 70px;
        height: 70px;
    }

    .graphic-circle-5 {
        width: 140px;
        height: 140px;
    }

    .graphic-circle-5 i {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-graphic {
        height: 350px;
        max-width: 400px;
    }

    .graphic-circle i {
        font-size: 1.5rem;
    }

    .graphic-circle-5 i {
        font-size: 2rem;
    }
}

/* --- START: New styles for ESG Pricing Section --- */

.pricing-summary-box {
    background: #f4f8f4; /* Spójne tło z innymi elementami */
    border-radius: 14px;
    padding: 28px 32px;
    margin: 0 auto;
    max-width: 750px; /* Ograniczenie szerokości dla lepszej czytelności */
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.06);
    border: 1px solid #e8f5e8;
}

.pricing-summary-box .price-total-label {
    text-align: center;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.pricing-summary-box .price-total-value {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-green);
    display: block;
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-summary-box .payment-structure {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.pricing-summary-box .payment-structure li {
    padding: 0.75rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddeedd;
    font-size: 1.05rem;
}

.pricing-summary-box .payment-structure li:last-child {
    border-bottom: none;
}

.pricing-summary-box .payment-structure .period {
    color: #333;
}

.pricing-summary-box .payment-structure .amount {
    font-weight: 600;
    color: var(--primary-green);
}

.pricing-summary-box .express-option {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #e8f5e8;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
}

.pricing-summary-box .express-option strong {
    color: var(--primary-green);
}

/* --- END: New styles for ESG Pricing Section --- */

/* --- START: New styles for Phased Pricing List --- */

.phased-pricing-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.phased-pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #ddeedd;
    font-size: 0.95em;
}

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

.phased-pricing-list .period {
    color: #555;
}

.phased-pricing-list .price {
    font-weight: 600;
    color: var(--primary-green);
    white-space: nowrap; /* Zapobiega łamaniu się ceny */
    padding-left: 10px;
}

/* --- END: New styles for Phased Pricing List --- */

/* --- START: New styles for Staged Service Offer --- */

/* Style dla ceny wewnątrz każdego etapu na liście */
.stage-price {
    display: inline-block;
    background-color: var(--secondary-green);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    margin: 10px 0 25px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Kontener dla całej sekcji z opcjami rozszerzonymi */
.extended-option-section {
    background-color: #f8f9fa; /* Jasne tło dla odróżnienia */
    border: 1px solid #e8f5e8;
    border-radius: 14px;
    padding: 28px;
    margin-top: 2rem;
}

/* Tytuł w sekcji opcji rozszerzonych */
.extended-option-section .section-title h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

/* Lista poszczególnych opcji/etapów developmentu */
.option-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.option-list > li {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid #ddeedd;
}

.option-list > li:last-of-type {
    border-bottom: none;
}

.option-list .option-details {
    flex: 1;
    padding-right: 1.5rem;
}

.option-list .option-details strong {
    display: block;
    color: var(--primary-green);
    font-size: 1.15rem;
    margin-bottom: 5px;
}

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

.option-list .option-price {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.1rem;
    text-align: right;
    white-space: nowrap;
    margin-top: 5px;
}

/* Wyróżniony box dla pełnego pakietu */
.full-package-highlight {
    background-color: #e8f5e8;
    border-left: 5px solid var(--accent-green);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.full-package-highlight .package-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

.full-package-highlight .package-details {
    margin: 0 0 0.75rem 0;
    color: #333;
}

.full-package-highlight .package-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-green);
}

.service-stages-container {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.service-stages-container > li {
    background: #f4f8f4;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    padding: 24px 28px;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.04);
}

/* Dodatkowa stylizacja dla nagłówka wewnątrz etapu dla lepszej czytelności */
.service-stages-container > li h4 {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #ddeedd;
    padding-bottom: 0.75rem;
}
.service-stage-block {
    background: #f4f8f4; /* Spójne tło */
    border-radius: 14px;
    padding: 28px 32px;
    margin-bottom: 2rem; /* Odstęp między etapami */
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.04);
}

/* Stylizacja dla nowego nagłówka H2 wewnątrz bloku etapu */
.service-stage-block h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

/* Poprawka marginesu dla ceny, aby ładnie pasowała pod nowym H2 */
.service-stage-block .stage-price {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

/* Nagłówek "DETAILED SCOPE" */
.service-stage-block h4 {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #ddeedd;
    padding-bottom: 0.75rem;
}

/* --- END: New styles for Staged Service Offer --- */

/* FAQ Hero Section */
.hero-faq {
    background: linear-gradient(135deg, #e8f5e8 0%, #f8f9fa 100%);
    padding: 60px 0 40px 0;
    text-align: center;
    position: relative;
    min-height: 20vh;
}
.faq-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}
.faq-hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0;
}
@media (max-width: 600px) {
    .faq-hero-title {
        font-size: 1.5rem;
    }
    .faq-hero-subtitle {
        font-size: 1rem;
    }
}

/* --- START: Styles for "Our Approach" pages --- */

/* Styl dla głównego paragrafu wprowadzającego na stronie */
.page-intro-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    max-width: 800px;
    margin: 0 auto 3rem auto; /* Wyśrodkowanie i margines dolny */
    text-align: center;
}

/* Kontener dla siatki z głównymi cechami/filarami podejścia */
.approach-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .approach-feature-grid {
        /* ...zawsze wyświetlaj DOKŁADNIE dwie kolumny o równej szerokości. */
        grid-template-columns: repeat(2, 1fr);
    }
}

.approach-feature-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-green);
    display: flex;
    flex-direction: column;
}

.approach-feature-item .feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.approach-feature-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.approach-feature-item p {
    color: #666;
    line-height: 1.6;
    flex-grow: 1; /* Zapewnia, że elementy mają tę samą wysokość */
}

/* Box podsumowujący na końcu strony */
.concluding-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}

.concluding-box p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--primary-green);
    font-weight: 500;
    max-width: 850px;
    margin: 0 auto;
}

/* --- END: Styles for "Our Approach" pages --- */

/* --- START: Styles for Icon List Component --- */

/* Kontener dla sekcji z listą ikon */
.icon-list-section .row {
    gap: 2rem 0; /* Dodaje odstęp pionowy między wierszami na mobile */
}

/* Pojedynczy element na liście */
.icon-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

/* Ikona przy każdym elemencie listy */
.icon-list-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gradient-1);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-top: 5px; /* Lepsze wyrównanie z tekstem */
}

/* Kontener na tekst (tytuł i opis) */
.icon-list-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.icon-list-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Dodatkowy styl dla finalnej obietnicy na stronie */
.concluding-promise {
    background: var(--gradient-3);
    color: white;
    padding: 3rem 2.5rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
}

.concluding-promise h4 {
    color: var(--secondary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.concluding-promise p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* --- END: Styles for Icon List Component --- */

/* --- START: Styles for Technical Capability Cards --- */

/* Główny kontener dla kart technicznych */
.tech-capability-grid .row {
    gap: 2rem 0; /* Odstęp pionowy na mobile */
}

/* Pojedyncza karta opisująca zdolność techniczną */
.tech-capability-card {
    background: #fff;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.08);
    border-top: 5px solid var(--secondary-green);
    transition: all 0.3s ease-in-out;
}

.tech-capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(46, 125, 50, 0.12);
}

/* Nagłówek karty (ikona + tytuł) */
.tech-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.tech-card-header .card-icon {
    font-size: 2.2rem; /* Można tu wstawić prawdziwe ikony FontAwesome */
    color: var(--primary-green);
    flex-shrink: 0;
}

.tech-card-header h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-green);
    margin: 0;
}

/* Lista wewnątrz karty */
.tech-capability-card .checklist {
    margin-top: 1.5rem;
}

.tech-capability-card .checklist li {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

/* --- END: Styles for Technical Capability Cards --- */

/* --- O NAS: HERO --- */
.hero-about {
    background: linear-gradient(135deg, #e8f5e8 0%, #f8f9fa 100%);
    padding: 60px 0 40px 0;
    min-height: 20vh;
}
.about-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}
.about-hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 0;
}
@media (max-width: 600px) {
    .about-hero-title {
        font-size: 1.5rem;
    }
    .about-hero-subtitle {
        font-size: 1rem;
    }
    .page-intro-text{
        padding: 0 1rem;
    }
}

/* --- O NAS: KARTY CECH --- */
.about-feature-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.08);
    padding: 2.5rem 2rem;
    height: 100%;
    border-top: 5px solid var(--secondary-green);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.about-feature-card h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.about-feature-card p {
    color: #666;
    line-height: 1.6;
}

/* --- O NAS: PODEJŚCIE --- */
.about-approach-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    border-left: 5px solid var(--accent-green);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.04);
}
.about-approach-card h4 {
    color: var(--primary-green);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.about-approach-card p {
    color: #666;
    font-size: 0.98rem;
    margin-bottom: 0.7rem;
}
.about-approach-card .checklist {
    margin-top: 1rem;
}
.about-approach-card .checklist li {
    font-size: 0.98rem;
    margin-bottom: 0.5rem;
}

/* --- O NAS: MOŻLIWOŚCI --- */
.about-capability-card {
    background: #f4f8f4;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.04);
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.about-capability-card h4 {
    color: var(--primary-green);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.about-capability-card .checklist {
    margin-top: 1rem;
}
.about-capability-card .checklist li {
    font-size: 0.98rem;
    margin-bottom: 0.5rem;
}

/* --- O NAS: CTA / ZAKOŃCZENIE --- */
.concluding-box {
    background: var(--gradient-3);
    color: #fff;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}
.concluding-box h2 {
    color: #ffe082;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.concluding-box p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #fff;
    font-weight: 500;
    max-width: 850px;
    margin: 0 auto 1.5rem auto;
}
.concluding-box .btn-cta {
    background: white;
    color: var(--primary-green);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 10px;
}
.concluding-box .btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.concluding-box .btn-cta-secondary:hover {
    background: white;
    color: var(--primary-green);
}

/* --- RESPONSYWNOŚĆ --- */
@media (max-width: 992px) {
    .about-feature-card,
    .about-approach-card,
    .about-capability-card {
        padding: 1.5rem 1rem;
    }
    .concluding-box {
        padding: 1.5rem;
    }
}
@media (max-width: 600px) {
    .about-feature-card,
    .about-approach-card,
    .about-capability-card {
        padding: 1rem 0.5rem;
    }
    .concluding-box {
        padding: 1rem;
    }
}

/* --- Kontakt: stylizacja formularza Contact Form 7 --- */
.about-feature-card .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.about-feature-card .wpcf7-form p {
    margin: 0;
}

.about-feature-card .wpcf7-form label {
    font-weight: 500;
    color: #444; /* lub #555, #333, jak wolisz */
    font-size: 1rem;
    margin-bottom: 0.3rem;
    display: block;
}

.about-feature-card .wpcf7-form input[type="text"],
.about-feature-card .wpcf7-form input[type="email"],
.about-feature-card .wpcf7-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #ddeedd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: #f8f9fa;
    color: #222;
    transition: border-color 0.2s;
    margin-top: 0.2rem;
}

.about-feature-card .wpcf7-form input[type="text"]:focus,
.about-feature-card .wpcf7-form input[type="email"]:focus,
.about-feature-card .wpcf7-form textarea:focus {
    border-color: var(--primary-green);
    outline: none;
    background: #fff;
}

.about-feature-card .wpcf7-form textarea {
    min-height: 120px;
    resize: vertical;
}

.about-feature-card .wpcf7-form input[type="submit"] {
    background: var(--gradient-1);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.08);
}

.about-feature-card .wpcf7-form input[type="submit"]:hover {
    background: var(--gradient-2);
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.15);
}

.about-feature-card .wpcf7-response-output {
    margin-top: 1rem;
    border-radius: 8px;
    padding: 1rem;
    font-size: 1rem;
}

.about-feature-card .wpcf7-spinner {
    margin-left: 10px;
    vertical-align: middle;
}

/* --- Kontakt: stylizacja tel i email --- */
.contact-label {
    color: #888;
    font-weight: 500;
    margin-right: 4px;
}

.contact-link {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
    padding: 2px 8px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    background: #f4f8f4;
    margin-bottom: 2px;
}

.contact-link i {
    margin-right: 6px;
    color: var(--primary-green);
    font-size: 1.1em;
    vertical-align: middle;
    transition: color 0.2s;
}

.contact-link:hover i {
    color: #fff;
}

@media (max-width: 991px) {
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        background: #fff;
        box-shadow: none;
        border-radius: 0;
        margin: 0;
        padding: 0.5rem 0 0.5rem 1.5rem;
        display: none;
    }
    .navbar-nav .dropdown.show > .dropdown-menu {
        display: block;
    }
    .navbar-nav .dropdown-menu .dropdown-item {
        padding-left: 2rem;
    }
    .navbar-nav .dropdown-toggle::after {
        float: right;
        margin-left: 0.5em;
        content: "\f078";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        border: none;
        vertical-align: middle;
    }
}

@media (max-width: 991px) {
    /* Całe menu mobilne */
    .navbar-nav {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(46, 125, 50, 0.08);
        padding: 1.2rem 0.5rem;
        margin-top: 1rem;
    }

    /* Każda pozycja menu */
    .navbar-nav .nav-item {
        margin-bottom: 0.5rem;
    }

    /* Linki główne */
    .navbar-nav .nav-link {
        color: var(--primary-green);
        font-size: 1.15rem;
        font-weight: 600;
        padding: 0.8rem 1.2rem;
        border-radius: 8px;
        transition: background 0.2s, color 0.2s;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link:focus {
        background: var(--gradient-1);
        color: #fff;
    }

    /* Dropdown toggle - strzałka */
    .navbar-nav .dropdown-toggle::after {
        margin-left: auto;
        font-size: 1rem;
        color: var(--secondary-green);
        transition: transform 0.2s;
    }
    .navbar-nav .dropdown.show > .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    /* Dropdown menu */
    .navbar-nav .dropdown-menu {
        background: #f8f9fa;
        border-radius: 10px;
        margin: 0.3rem 0 0.7rem 0.7rem;
        box-shadow: 0 4px 16px rgba(46, 125, 50, 0.07);
        padding: 0.5rem 0;
        border: none;
    }
    .navbar-nav .dropdown-menu .dropdown-item {
        color: #333;
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
        border-radius: 6px;
        transition: background 0.2s, color 0.2s;
    }
    .navbar-nav .dropdown-menu .dropdown-item:hover,
    .navbar-nav .dropdown-menu .dropdown-item:focus {
        background: var(--gradient-2);
        color: #fff;
    }

    /* Aktywna pozycja */
    .navbar-nav .nav-item.active > .nav-link,
    .navbar-nav .nav-item.active > .nav-link:focus {
        background: var(--gradient-1);
        color: #fff;
    }

    /* Większy odstęp na dole menu */
    .navbar-collapse {
        padding-bottom: 1.5rem;
    }
}

.service-disclaimer-box {
    background-color: #f8f9fa; /* Jasne, neutralne tło */
    border-top: 3px solid #e8f5e8; /* Subtelne oddzielenie od góry */
    border-radius: 0 0 12px 12px; /* Zaokrąglenie tylko na dole, pasujące do kontenera */
    padding: 1.5rem 2rem;
    margin: 2.5rem -32px -32px -32px; /* Magiczne marginesy, aby box rozciągnął się na całą szerokość kontenera */
}

.service-disclaimer-box p {
    font-size: 0.85em; /* Mniejszy tekst dla "drobnego druku" */
    color: #666; /* Szary kolor, mniej rzucający się w oczy */
    line-height: 1.6;
    margin: 0;
    text-align: justify; /* Wyjustowanie dla formalnego wyglądu */
}

.service-disclaimer-box p::before {
    content: "* "; /* Dodaje gwiazdkę na początku */
    font-weight: bold;
    color: var(--secondary-green); /* Używa koloru z motywu */
}

@media (max-width: 900px) {
    .service-disclaimer-box {
        margin: 2rem -8px -24px -8px; /* Dopasowanie marginesów dla mniejszych ekranów */
        padding: 1.25rem;
    }
}

@media (max-width: 600px) {
    .service-disclaimer-box {
        margin: 1.5rem -2px -10px -2px; /* Dopasowanie marginesów dla mobilnych */
        padding: 1rem;
        border-radius: 0;
    }
}
