@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ===== PODSTAWY ===== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: #f4f1ea;
    color: #2f3a32;
    margin: 0;
}

/* ===== HERO VIDEO BACKGROUND ===== */
.hero-bg {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    height: 100vh;
}

.hero-bg video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.28) 45%, rgba(0,0,0,0.38) 100%);
    z-index: 1;
}

.glass-box {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

/* ===== HERO NAGŁÓWEK ===== */
.hero-title {
    font-family: 'Poppins', sans-serif;
}

/* ===== HERO UKŁAD ===== */
.hero-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    align-items: center;
    gap: 100px;
    min-height: 100vh;
}

.hero-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    transition: opacity 0.6s ease;
}

.hero-right.hero-idle {
    opacity: 0.32;
}

/* ===== HERO SLIDER ===== */
.hero-slider-wrap {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.35s ease, transform 0.35s ease;
    margin-bottom: 0;
}

.hero-slider-wrap.is-changing {
    opacity: 0;
    transform: translateY(12px);
}

.hero-slider-line {
    margin: 0 0 24px;
    max-width: 980px;
    font-size: clamp(2.8rem, 4.8vw, 5rem);
    line-height: 0.96;
    font-weight: 700;
    letter-spacing: -0.045em;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.30);
    text-align: center;
}

/* ===== HERO LEAD ===== */
.hero-main-title {
    margin: 0 0 20px;
    max-width: 980px;
    font-size: clamp(2.8rem, 4.8vw, 5rem);
    line-height: 0.96;
    font-weight: 700;
    letter-spacing: -0.045em;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.30);
}

.hero-main-lead {
    margin: 0;
    max-width: 760px;
    font-size: 1.2rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.96);
    font-style: normal;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-shadow: 0 8px 24px rgba(0,0,0,0.30);
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 12px 22px;
    border-radius: 18px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    text-align: center;
}

/* ===== HERO PRAWY GÓRNY RÓG ===== */
.hero-top-right-stack {
    position: absolute;
    top: 12px;
    right: 28px;
    z-index: 25;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* wspólna baza */
.watch-video-btn,
.hero-visit-badge {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 10px 26px rgba(0,0,0,0.16);
    overflow: hidden;
    white-space: nowrap;
    width: 46px;
    min-width: 46px;
    transition:
        width 0.38s ease,
        background 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease;
    animation: heroBadgeFloat 3.8s ease-in-out infinite;
}

/* ikonka */
.watch-video-btn i,
.hero-visit-badge i {
    width: 14px;
    min-width: 14px;
    text-align: center;
    font-size: 0.82rem;
    flex-shrink: 0;
}

/* ukryty tekst */
.watch-video-btn span,
.hero-visit-badge span {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    margin-left: 0;
    transition:
        max-width 0.38s ease,
        opacity 0.22s ease,
        margin-left 0.38s ease;
}

/* osobne kolory */
.watch-video-btn {
    background: rgba(0,0,0,0.24);
    color: #fff;
    cursor: pointer;
}

.hero-visit-badge {
    background: rgba(0,0,0,0.20);
    color: rgba(255,255,255,0.96);
    animation-delay: 0.6s;
}

/* hover - rozwinięcie */
.watch-video-btn:hover,
.hero-visit-badge:hover,
.hero-top-right-stack:hover .watch-video-btn,
.hero-top-right-stack:hover .hero-visit-badge {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.22);
}

.watch-video-btn:hover,
.hero-top-right-stack:hover .watch-video-btn {
    width: 172px;
    background: rgba(0,0,0,0.38);
}

.hero-visit-badge:hover,
.hero-top-right-stack:hover .hero-visit-badge {
    width: 248px;
    background: rgba(0,0,0,0.30);
}

.watch-video-btn:hover span,
.hero-visit-badge:hover span,
.hero-top-right-stack:hover .watch-video-btn span,
.hero-top-right-stack:hover .hero-visit-badge span {
    max-width: 220px;
    opacity: 1;
    margin-left: 10px;
}

.hero-visit-badge strong {
    font-weight: 800;
}

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

@media (max-width: 768px) {
    .hero-top-right-stack {
        position: static;
        margin: 0 auto 16px;
        align-items: center;
        gap: 8px;
    }

    /* na telefonie hover praktycznie nie istnieje,
       więc tam lepiej pokazać wszystko normalnie */
    .watch-video-btn,
    .hero-visit-badge {
        width: auto;
        min-width: auto;
        height: 42px;
        padding: 0 14px;
        font-size: 0.76rem;
    }

    .watch-video-btn span,
    .hero-visit-badge span {
        max-width: 260px;
        opacity: 1;
        margin-left: 8px;
    }
}

/* ===== HERO STRZAŁKA W DÓŁ ===== */
.scroll-down-indicator {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 25;
    text-decoration: none;
}

.scroll-down-indicator span {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.22);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    animation: bounceDown 1.8s infinite;
    transition: 0.3s ease;
}

.scroll-down-indicator span:hover {
    background: rgba(0,0,0,0.36);
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* ===== HERO CONTACT BOX ===== */
.hero-contact-box {
    width: 100%;
    max-width: 360px;
    border-radius: 30px;
    padding: 28px 24px;
    text-align: left;
}

.hero-contact-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-contact-title {
    margin: 0;
    font-size: 2rem;
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.hero-contact-subtitle {
    margin: 0;
    color: rgba(255,255,255,0.82);
    font-size: 0.98rem;
    line-height: 1.6;
    font-style: italic;
}

.hero-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 4px;
}

.hero-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 15px 18px;
    border-radius: 20px;
    font-size: 1.02rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.hero-social-btn i {
    font-size: 1.12rem;
}

.facebook-btn {
    background: #1877f2;
}

.facebook-btn:hover {
    background: #0f66db;
}

.instagram-btn {
    background: linear-gradient(90deg, #d946ef 0%, #ef4444 50%, #f59e0b 100%);
}

.instagram-btn:hover {
    filter: brightness(1.05);
}

.hero-contact-note {
    margin: 2px 0 0;
    color: rgba(255,255,255,0.58);
    font-size: 0.92rem;
    line-height: 1.5;
    font-style: italic;
}

/* ===== PRZYCISKI KONTAKT HERO ===== */
.contact-btn {
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    filter: brightness(1.08);
}

.contact-btn:active {
    transform: translateY(0) scale(0.97);
}

.contact-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.4) 50%,
        rgba(255,255,255,0) 100%
    );
    transition: left 0.6s ease;
}

.contact-btn:hover::after {
    left: 120%;
}

.contact-btn i {
    transition: transform 0.3s ease;
}

.contact-btn:hover i {
    transform: scale(1.2) rotate(-5deg);
}

/* ===== 3 BELKI POD HERO ===== */
/* ===== 3 BELKI POD HERO ===== */
.home-belts-section {
    position: relative;
    background: linear-gradient(180deg, #f4f1ea 0%, #f8f5ef 100%);
}

.info-belt-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 320px;
    padding: 34px 32px 78px;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(252,250,246,0.92) 100%);
    border: 1px solid rgba(140, 130, 110, 0.10);
    border-radius: 30px;
    box-shadow: 0 18px 40px rgba(60, 50, 40, 0.08);
    overflow: hidden;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease, background 0.32s ease;
}

.info-belt-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(47, 125, 77, 0.05) 0%, rgba(47, 125, 77, 0) 55%);
    opacity: 0;
    transition: opacity 0.32s ease;
}

.info-belt-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    box-shadow: inset 0 0 0 1px rgba(47, 125, 77, 0.04);
    pointer-events: none;
}

.info-belt-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 54px rgba(60, 50, 40, 0.14);
    border-color: rgba(47, 125, 77, 0.18);
    background: linear-gradient(180deg, #ffffff 0%, #f9fcf8 100%);
}

.info-belt-card:hover::before {
    opacity: 1;
}

.info-belt-icon-wrap,
.info-belt-body,
.info-belt-cta {
    position: relative;
    z-index: 2;
}

.info-belt-icon-wrap {
    margin-bottom: 28px;
}

.info-belt-icon {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(47, 125, 77, 0.10);
    color: #2f7d4d;
    font-size: 1.45rem;
    box-shadow: inset 0 0 0 1px rgba(47, 125, 77, 0.04);
    transition: transform 0.32s ease, background 0.32s ease;
}

.info-belt-body h3 {
    margin: 0 0 16px;
    font-size: 2.05rem;
    line-height: 1.05;
    font-weight: 800;
    color: #2f3a32;
    letter-spacing: -0.02em;
}

.info-belt-body p {
    margin: 0;
    max-width: 95%;
    color: #5d675f;
    font-size: 1.14rem;
    line-height: 1.68;
    font-weight: 500;
}

.info-belt-cta {
    position: absolute;
    right: 30px;
    bottom: 26px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5e9f73;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    opacity: 0.92;
    transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease;
}

.info-belt-cta i {
    font-size: 0.82rem;
    transition: transform 0.3s ease;
}

.info-belt-card:hover .info-belt-icon {
    transform: scale(1.06) rotate(-4deg);
    background: rgba(47, 125, 77, 0.14);
}

.info-belt-card:hover .info-belt-cta {
    transform: translateY(-2px);
    opacity: 1;
    color: #2f7d4d;
}

.info-belt-card:hover .info-belt-cta i {
    transform: translateX(6px);
}

@media (max-width: 1024px) {
    .info-belt-card {
        min-height: 290px;
        padding: 30px 28px 74px;
    }

    .info-belt-body h3 {
        font-size: 1.8rem;
    }

    .info-belt-body p {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .info-belt-card {
        min-height: auto;
        padding: 24px 22px 68px;
        border-radius: 24px;
    }

    .info-belt-card::after {
        border-radius: 24px;
    }

    .info-belt-icon-wrap {
        margin-bottom: 20px;
    }

    .info-belt-icon {
        width: 62px;
        height: 62px;
        border-radius: 18px;
        font-size: 1.2rem;
    }

    .info-belt-body h3 {
        margin-bottom: 12px;
        font-size: 1.55rem;
        line-height: 1.08;
    }

    .info-belt-body p {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.6;
    }

    .info-belt-cta {
        right: 22px;
        bottom: 20px;
        font-size: 0.94rem;
    }
}

/* ===== BELKA OPINII ===== */
.reviews-strip-section {
    position: relative;
    background: linear-gradient(180deg, #f4f1ea 0%, #f8f5ef 100%);
    overflow: hidden;
}

.reviews-strip {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 14px 0;
}

.reviews-track {
    display: flex;
    align-items: stretch;
    gap: 22px;
    width: max-content;
    animation: reviews-marquee 42s linear infinite;
    will-change: transform;
}

.review-pill {
    position: relative;
    min-width: 360px;
    max-width: 360px;
    background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(251,248,242,0.98) 100%);
    border: 1px solid rgba(125, 145, 112, 0.14);
    border-radius: 26px;
    padding: 24px 26px;
    box-shadow: 0 14px 34px rgba(60, 50, 40, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.review-pill::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(47, 125, 77, 0.05) 0%, rgba(47, 125, 77, 0) 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-pill:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(60, 50, 40, 0.13);
    border-color: rgba(47, 125, 77, 0.18);
}

.review-pill:hover::before {
    opacity: 1;
}

.review-stars,
.review-pill p {
    position: relative;
    z-index: 2;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #d4a017;
    font-size: 15px;
}

.review-pill p {
    margin: 0;
    color: #4a564d;
    font-size: 15px;
    line-height: 1.72;
    font-weight: 500;
}

.reviews-strip::before,
.reviews-strip::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 110px;
    z-index: 3;
    pointer-events: none;
}

.reviews-strip::before {
    left: 0;
    background: linear-gradient(to right, #f4f1ea 0%, rgba(244, 241, 234, 0) 100%);
}

.reviews-strip::after {
    right: 0;
    background: linear-gradient(to left, #f4f1ea 0%, rgba(244, 241, 234, 0) 100%);
}

.reviews-strip:hover .reviews-track {
    animation-play-state: paused;
}

@keyframes reviews-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .reviews-strip {
        padding: 10px 0;
    }

    .reviews-track {
        gap: 14px;
        animation-duration: 30s;
    }

    .review-pill {
        min-width: 280px;
        max-width: 280px;
        padding: 18px 18px;
        border-radius: 20px;
        gap: 10px;
    }

    .review-pill p {
        font-size: 14px;
        line-height: 1.58;
    }

    .reviews-strip::before,
    .reviews-strip::after {
        width: 40px;
    }
}

/* ===== SEKCJA DOMKÓW ===== */
section#domki img {
    transition: transform 0.5s ease;
}

section#domki img:hover {
    transform: scale(1.02);
}

/* ===== PRZYCISKI DOMKÓW ===== */
.contact-outline {
    border: 2px solid;
    background: transparent;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.contact-outline.phone {
    color: #2f7d4d;
    border-color: #2f7d4d;
    background: rgba(255, 255, 255, 0.35);
}

.contact-outline.phone:hover {
    background: #2f7d4d;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(47, 125, 77, 0.25);
}

.contact-outline.messenger {
    color: #2b63c6;
    border-color: #2b63c6;
    background: rgba(255, 255, 255, 0.35);
}

.contact-outline.messenger:hover {
    background: #2b63c6;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(43, 99, 198, 0.25);
}

/* ===== JAK DOJECHAĆ ===== */
.route-card {
    background: rgba(255,255,255,0.8);
    border-radius: 30px;
    padding: 34px 30px;
    border: 1px solid rgba(130, 120, 100, 0.12);
    box-shadow: 0 16px 40px rgba(60, 50, 40, 0.08);
}

.route-card-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: rgba(47, 125, 77, 0.12);
    color: #2f7d4d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 22px;
}

.route-map-box {
    background: rgba(255,255,255,0.78);
    border-radius: 30px;
    padding: 10px;
    border: 1px solid rgba(130, 120, 100, 0.12);
    box-shadow: 0 16px 40px rgba(60, 50, 40, 0.08);
    overflow: hidden;
}

/* ===== VIDEO MODAL ===== */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.video-modal.active {
    display: block;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(1100px, 92vw);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.video-modal-content video {
    width: 100%;
    border-radius: 24px;
    background: #000;
    box-shadow: 0 25px 70px rgba(0,0,0,0.4);
}

.video-modal-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: #2f3a32;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.22);
    z-index: 3;
}

/* ===== FLOATING SOCIALS ===== */
#floating-socials {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 250;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

#floating-socials.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-social-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 19px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.floating-social-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
    filter: brightness(1.05);
}

.floating-social-btn.facebook {
    background: #1877f2;
}

.floating-social-btn.messenger {
    background: linear-gradient(135deg, #00b2ff, #006aff, #7b2cff);
}

.floating-social-btn.instagram {
    background: linear-gradient(135deg, #d946ef 0%, #ef4444 50%, #f59e0b 100%);
}

/* ===== POPUP TELEFONU ===== */
#phone-popup {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    opacity: 0;
    z-index: 999;
    transition: all 0.4s ease;
}

#phone-popup.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.phone-box {
    background: rgba(52, 58, 50, 0.94);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 14px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.phone-box span {
    font-weight: bold;
    letter-spacing: 0.5px;
}

.phone-box button {
    background: #2f7d4d;
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.phone-box button:hover {
    background: #25663e;
}

/* ===== NAVBAR NOWY STYL ===== */
.navbar {
    background: rgba(251, 248, 242, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(120, 110, 90, 0.12);
    box-shadow: 0 8px 20px rgba(60, 50, 40, 0.08);
}

.navbar a {
    color: #3f4b42;
    transition: 0.3s;
}

.navbar a:hover {
    color: #2f7d4d;
}

.navbar a.font-bold {
    color: #2f7d4d;
}

.navbar span.text-green-800 {
    color: #2f7d4d !important;
}

.navbar span.text-gray-500 {
    color: #7a8378 !important;
}

/* ===== MENU NAVBAR BOOST ===== */
.navbar-menu a {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.04em;
    position: relative;
    padding: 6px 0;
    transition: 0.3s;
}

.navbar-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #2f7d4d;
    transition: 0.3s ease;
}

.navbar-menu a:hover::after {
    width: 100%;
}

.navbar-menu a:hover {
    color: #2f7d4d;
}

/* ===== LOGO + BRAND ===== */
/* ===== LOGO + BRAND ===== */
.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar-logo {
    height: 72px;
    width: auto;
    display: block;
    transform: scale(1.25);
    transform-origin: center;
}

.navbar-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.navbar .container {
    padding-top: 6px;
    padding-bottom: 6px;
}

/* ===== NAPIS DESKTOP ===== */
.brand-main {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #2f7d4d;
    line-height: 0.95;
    transition: 0.3s;
}

.brand-sub {
    font-size: 1.02rem;
    margin-top: 6px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #7a8378;
    font-weight: 600;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .navbar-logo {
        height: 52px;
        transform: scale(1.2);
    }

    .navbar-brand {
        gap: 12px;
    }

    .brand-main {
        font-size: 2.15rem;
    }

    .brand-sub {
        font-size: 0.76rem;
        letter-spacing: 0.16em;
        margin-top: 4px;
    }
}

/* spacing navbar */
.navbar .container {
    padding-top: 8px;
    padding-bottom: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .watch-video-btn {
        top: 95px;
        right: 20px;
    }

    .hero-visit-badge {
        top: 95px;
        left: 20px;
    }

    .hero-layout {
        gap: 50px;
    }

    .hero-slider-line {
        font-size: clamp(2.4rem, 4.2vw, 4rem);
    }
}

@media (max-width: 768px) {
    section#domki .grid {
        grid-template-columns: 1fr !important;
    }

    section#domki img {
        height: 300px;
    }

    .hero-bg {
        min-height: auto;
        height: auto;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: auto;
        padding-top: 110px;
        padding-bottom: 90px;
    }

    .hero-left {
        order: 2;
        justify-content: center;
    }

    .hero-right {
        order: 1;
        max-width: 100%;
    }

    .hero-right.hero-idle {
        opacity: 1;
    }

    .hero-slider-wrap {
        min-height: 180px;
        margin-bottom: 0;
    }

    .hero-slider-line {
        font-size: 2.35rem;
        line-height: 1.02;
        max-width: 100%;
        letter-spacing: -0.035em;
        margin-bottom: 18px;
    }

    .hero-main-title {
        font-size: 2.8rem;
        line-height: 1.02;
        max-width: 100%;
        letter-spacing: -0.035em;
    }

    .hero-main-lead {
        font-size: 1.02rem;
        max-width: 100%;
        line-height: 1.5;
        padding: 10px 14px;
        border-radius: 14px;
    }

    .hero-contact-box {
        max-width: 340px;
        padding: 24px 20px;
        border-radius: 24px;
    }

    .hero-contact-title {
        font-size: 1.9rem;
    }

    .hero-contact-subtitle {
        font-size: 0.98rem;
    }

    .hero-social-btn {
        padding: 15px 18px;
        font-size: 1rem;
        border-radius: 18px;
    }

    .hero-top-right-stack {
        position: static;
        margin: 0 auto 18px;
        align-items: center;
        gap: 12px;
    }

    .watch-video-btn,
    .hero-visit-badge {
        width: fit-content;
    }

    .scroll-down-indicator {
        bottom: 18px;
    }

    .scroll-down-indicator span {
        width: 48px;
        height: 48px;
    }

    .info-belt-card {
        padding: 24px 22px;
        border-radius: 24px;
    }

    .route-card {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .route-map-box {
        border-radius: 24px;
    }

    .video-modal-content {
        width: 94vw;
    }

    .video-modal-close {
        top: -14px;
        right: -4px;
        width: 42px;
        height: 42px;
    }

    #floating-socials {
        right: 14px;
        bottom: 14px;
    }

    .reviews-track {
        gap: 14px;
        animation-duration: 28s;
    }

    .review-pill {
        min-width: 280px;
        max-width: 280px;
        padding: 18px 18px;
        border-radius: 20px;
    }

    .review-pill p {
        font-size: 14px;
        line-height: 1.55;
    }

    .reviews-strip::before,
    .reviews-strip::after {
        width: 40px;
    }

    .brand-main {
        font-size: 2.05rem;
    }

    .brand-sub {
        font-size: 0.72rem;
        letter-spacing: 0.18em;
    }
}

#opinie {
    scroll-margin-top: 160px;
}

#scroll-circle {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
    70% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
#scroll-circle {
    position: fixed; /* KLUCZOWE */
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2f7d4d, #4caf6a);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    transition: 0.3s;
}

#scroll-circle:hover {
    transform: translateX(-50%) translateY(5px);
    background: rgba(255,255,255,0.25);
}

/* ===== AKTYWNA STRONA W MENU ===== */
.navbar-menu a.nav-active {
    color: #2f7d4d;
    font-weight: 700;
}

/* podkreślenie aktywnej */
.navbar-menu a.nav-active::after {
    width: 100%;
}
/* ===== MOCNA BELKA SEKCJI ===== */
.section-banner {
    position: relative;
    margin: 0 0 60px;
    padding: 50px 20px;
    background: linear-gradient(135deg, #244c34 0%, #2f7d4d 45%, #5aa06f 100%);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(47, 125, 77, 0.25);
}

.section-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.2), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.15), transparent 30%);
}

.section-banner-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.section-banner-kicker {
    display: inline-block;
    margin-bottom: 12px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #d9f4e0;
}

.section-banner-title {
    margin: 0 0 14px;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
}

.section-banner-text {
    margin: 0 auto;
    max-width: 700px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}
/* ===== HERO TEMPERATURA / POGODA ===== */
.hero-weather-badge {
    position: absolute;
    top: 14px;
    left: 28px;
    z-index: 25;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    min-height: 46px;
    padding: 0 16px;
    border-radius: 999px;

    background: rgba(0, 0, 0, 0.26);
    color: #fff;

    border: 1px solid rgba(255,255,255,0.16);
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;

    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    animation: weatherBadgeFloat 3.6s ease-in-out infinite;
}

.hero-weather-badge:hover {
    background: rgba(0, 0, 0, 0.38);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.24);
}

.hero-weather-badge i {
    font-size: 0.95rem;
    width: 16px;
    text-align: center;
    animation: weatherIconPulse 2.8s ease-in-out infinite;
}

/* warianty pogody */
.hero-weather-badge.weather-clear i {
    animation: sunSpin 8s linear infinite;
}

.hero-weather-badge.weather-rain i,
.hero-weather-badge.weather-storm i,
.hero-weather-badge.weather-snow i {
    animation: weatherIconPulse 1.8s ease-in-out infinite;
}

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

@keyframes weatherIconPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.12);
        opacity: 0.88;
    }
}

@keyframes sunSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.08);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@media (max-width: 768px) {
    .hero-weather-badge {
        top: 12px;
        left: 14px;
        min-height: 42px;
        padding: 0 14px;
        font-size: 0.82rem;
    }
}

.phone-btn {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.phone-btn:hover {
    filter: brightness(1.08);
}
/* TELEFON BUTTON */
.floating-social-btn.phone {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

/* WRAPPER */
.phone-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* CHMURKA */
.phone-bubble {
    position: absolute;
    right: 64px;
    background: rgba(30, 35, 30, 0.95);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;

    opacity: 0;
    transform: translateX(10px);
    pointer-events: none;

    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* AKTYWNA CHMURKA */
.phone-wrapper.active .phone-bubble {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.domki-separator {
    position: relative;
    height: 60px;
    margin: 50px 0;
}

/* główna linia */
.domki-separator::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
    background: linear-gradient(
        to right,
        transparent,
        rgba(47, 125, 77, 0.7),
        transparent
    );
}

/* ===== DOMKI PREMIUM ===== */
.domki-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.72) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(130, 120, 100, 0.10);
    border-radius: 30px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(60, 50, 40, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
}

.domki-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(60, 50, 40, 0.12);
    border-color: rgba(47, 125, 77, 0.16);
}

.domki-media-wrap {
    position: relative;
}

.domki-media-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 16px 36px rgba(30, 30, 30, 0.12);
}

.domki-media-img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.domki-card:hover .domki-media-img {
    transform: scale(1.06);
}

.domki-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px;
    background: linear-gradient(180deg, rgba(0,0,0,0.04) 10%, rgba(0,0,0,0.46) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.domki-card:hover .domki-overlay {
    opacity: 1;
}

.domki-overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.22);
}

.domki-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2f7d4d, #4ca96b);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    box-shadow: 0 12px 26px rgba(47, 125, 77, 0.22);
}

.domki-title {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.02;
    font-weight: 800;
    color: #146c3d;
    letter-spacing: -0.03em;
}

.domki-desc {
    margin: 0;
    max-width: 560px;
    color: #5d675f;
    font-size: 1.08rem;
    line-height: 1.8;
}

.domki-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.domki-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #455046;
    font-size: 1.08rem;
    font-weight: 600;
}

.domki-features li i {
    width: 22px;
    text-align: center;
    color: #20b15a;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.domki-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 4px;
}

.domki-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 156px;
    padding: 14px 22px;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.domki-btn:hover {
    transform: translateY(-2px);
}

.domki-btn.phone {
    background: rgba(47, 125, 77, 0.10);
    color: #2f7d4d;
    box-shadow: inset 0 0 0 2px rgba(47, 125, 77, 0.22);
}

.domki-btn.phone:hover {
    background: #2f7d4d;
    color: #fff;
    box-shadow: 0 14px 28px rgba(47, 125, 77, 0.22);
}

.domki-btn.messenger {
    background: rgba(24, 119, 242, 0.10);
    color: #1877f2;
    box-shadow: inset 0 0 0 2px rgba(24, 119, 242, 0.22);
}

.domki-btn.messenger:hover {
    background: #1877f2;
    color: #fff;
    box-shadow: 0 14px 28px rgba(24, 119, 242, 0.20);
}

@media (max-width: 768px) {
    .domki-card {
        padding: 18px;
        border-radius: 24px;
    }

    .domki-media-link {
        border-radius: 20px;
    }

    .domki-media-img {
        height: 280px;
    }

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

    .domki-desc {
        font-size: 1rem;
        line-height: 1.7;
    }

    .domki-features {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .domki-features li {
        font-size: 1rem;
    }

    .domki-actions {
        flex-direction: column;
    }

    .domki-btn {
        width: 100%;
        min-width: unset;
    }

    .domki-badge {
        top: 14px;
        left: 14px;
        font-size: 0.78rem;
        padding: 8px 12px;
    }
}

/* ===== NAVBAR CLEAN ===== */
.navbar {
    background: rgba(251, 248, 242, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: none;
    box-shadow: none;
}

/* ===== WSPÓLNY HERO PODSTRON ===== */
.subpage-hero {
    min-height: 72vh;
    height: 72vh;
}

.subpage-hero .hero-layout {
    grid-template-columns: 380px 1fr;
    min-height: 72vh;
}

.subpage-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.subpage-title {
    margin: 0 0 22px;
    max-width: 980px;
    font-size: clamp(2.8rem, 4.8vw, 5rem);
    line-height: 0.96;
    font-weight: 700;
    letter-spacing: -0.045em;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.30);
}

.subpage-lead {
    margin: 0;
    max-width: 760px;
    font-size: 1.12rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.96);
    font-weight: 600;
    text-shadow: 0 8px 24px rgba(0,0,0,0.30);
    background: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 12px 22px;
    border-radius: 18px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ===== OFERTA ===== */
.offer-page-section {
    background: linear-gradient(180deg, #f4f1ea 0%, #f8f5ef 100%);
}

.offer-card {
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(130, 120, 100, 0.10);
    border-radius: 30px;
    padding: 32px 28px;
    box-shadow: 0 16px 40px rgba(60, 50, 40, 0.08);
    transition: 0.35s ease;
    height: 100%;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(60, 50, 40, 0.12);
}

.offer-card-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.offer-card-icon.green {
    background: linear-gradient(135deg, #2f7d4d, #4ca96b);
}

.offer-card-icon.blue {
    background: linear-gradient(135deg, #1877f2, #6a5cff);
}

.offer-card-icon.orange {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.offer-card h3 {
    margin: 0 0 12px;
    font-size: 1.55rem;
    font-weight: 800;
    color: #2f3a32;
}

.offer-card p {
    margin: 0;
    color: #5d675f;
    font-size: 1rem;
    line-height: 1.8;
}

.offer-highlight {
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(130, 120, 100, 0.10);
    border-radius: 32px;
    padding: 34px 30px;
    box-shadow: 0 16px 40px rgba(60, 50, 40, 0.08);
}

.offer-highlight h3 {
    margin: 0 0 14px;
    font-size: 2rem;
    font-weight: 800;
    color: #2f7d4d;
}

.offer-highlight p {
    margin: 0;
    color: #5d675f;
    line-height: 1.8;
    font-size: 1.05rem;
}

.offer-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.offer-list li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #4e5950;
    font-size: 1rem;
    line-height: 1.75;
}

.offer-list i {
    width: 22px;
    text-align: center;
    color: #2f7d4d;
    margin-top: 3px;
}

.offer-cta-strip {
    background: linear-gradient(135deg, rgba(47,125,77,0.12), rgba(255,255,255,0.72));
    border: 1px solid rgba(47,125,77,0.12);
    border-radius: 28px;
    padding: 28px 26px;
    box-shadow: 0 14px 35px rgba(60, 50, 40, 0.07);
}

.offer-cta-strip h3 {
    margin: 0 0 10px;
    font-size: 1.7rem;
    font-weight: 800;
    color: #2f3a32;
}

.offer-cta-strip p {
    margin: 0 0 20px;
    color: #5d675f;
    line-height: 1.75;
}

.offer-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 22px;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    box-shadow: 0 14px 30px rgba(0,0,0,0.14);
}

.offer-action-btn:hover {
    transform: translateY(-3px) scale(1.02);
    filter: brightness(1.03);
}

.offer-action-btn.primary {
    background: linear-gradient(135deg, #2f7d4d, #4ca96b);
    color: #fff;
}

.offer-action-btn.secondary {
    background: linear-gradient(135deg, #00b2ff, #006aff, #7b2cff);
    color: #fff;
}

/* ===== GALERIA ===== */
.gallery-page-section {
    background: linear-gradient(180deg, #f4f1ea 0%, #f8f5ef 100%);
}

.gallery-intro-box {
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(130, 120, 100, 0.10);
    border-radius: 30px;
    padding: 32px 28px;
    box-shadow: 0 16px 40px rgba(60, 50, 40, 0.08);
}

.gallery-intro-box h3 {
    margin: 0 0 14px;
    font-size: 1.8rem;
    font-weight: 800;
    color: #2f7d4d;
}

.gallery-intro-box p {
    margin: 0;
    color: #5d675f;
    line-height: 1.8;
    font-size: 1.02rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 14px 36px rgba(60, 50, 40, 0.10);
    background: #ddd;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease, filter 0.35s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.28), rgba(0,0,0,0.02));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(1.03);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    background: rgba(255,255,255,0.16);
    color: #fff;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.16);
}

.gallery-item.tall {
    grid-column: span 4;
    grid-row: span 2;
    min-height: 520px;
}

.gallery-item.wide {
    grid-column: span 8;
    min-height: 250px;
}

.gallery-item.normal {
    grid-column: span 4;
    min-height: 250px;
}

.gallery-item.large {
    grid-column: span 6;
    min-height: 320px;
}

.gallery-bottom-note {
    background: linear-gradient(135deg, rgba(47,125,77,0.12), rgba(255,255,255,0.72));
    border: 1px solid rgba(47,125,77,0.12);
    border-radius: 28px;
    padding: 28px 26px;
    box-shadow: 0 14px 35px rgba(60, 50, 40, 0.07);
}

.gallery-bottom-note h3 {
    margin: 0 0 10px;
    font-size: 1.7rem;
    font-weight: 800;
    color: #2f3a32;
}

.gallery-bottom-note p {
    margin: 0 0 18px;
    color: #5d675f;
    line-height: 1.75;
}

.gallery-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 22px;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    box-shadow: 0 14px 30px rgba(0,0,0,0.14);
    background: linear-gradient(135deg, #2f7d4d, #4ca96b);
    color: #fff;
}

.gallery-action-btn:hover {
    transform: translateY(-3px) scale(1.02);
    filter: brightness(1.03);
}

/* ===== OKOLICA ===== */
.area-page-section {
    background: linear-gradient(180deg, #f4f1ea 0%, #f8f5ef 100%);
}

.area-intro-box,
.area-highlight-box,
.city-trip-box,
.area-cta-strip {
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(130, 120, 100, 0.10);
    border-radius: 30px;
    padding: 32px 28px;
    box-shadow: 0 16px 40px rgba(60, 50, 40, 0.08);
}

.area-intro-box h3,
.area-highlight-box h3,
.city-trip-box h3,
.area-cta-strip h3 {
    margin: 0 0 14px;
    font-size: 1.8rem;
    font-weight: 800;
    color: #2f7d4d;
}

.area-intro-box p,
.area-highlight-box p,
.city-trip-box p,
.area-cta-strip p {
    margin: 0;
    color: #5d675f;
    line-height: 1.8;
    font-size: 1.02rem;
}

.area-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.area-list li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #4e5950;
    font-size: 1rem;
    line-height: 1.75;
}

.area-list i {
    width: 22px;
    text-align: center;
    color: #2f7d4d;
    margin-top: 3px;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.attraction-card {
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(130, 120, 100, 0.10);
    border-radius: 28px;
    padding: 28px 24px;
    box-shadow: 0 14px 35px rgba(60, 50, 40, 0.07);
    transition: 0.35s ease;
    height: 100%;
}

.attraction-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(60, 50, 40, 0.11);
}

.attraction-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
    color: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.attraction-icon.green {
    background: linear-gradient(135deg, #2f7d4d, #4ca96b);
}

.attraction-icon.blue {
    background: linear-gradient(135deg, #1877f2, #6a5cff);
}

.attraction-icon.orange {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.attraction-card h4 {
    margin: 0 0 10px;
    font-size: 1.35rem;
    font-weight: 800;
    color: #2f3a32;
}

.attraction-card p {
    margin: 0;
    color: #5d675f;
    line-height: 1.75;
    font-size: 0.98rem;
}

.area-cta-strip {
    background: linear-gradient(135deg, rgba(47,125,77,0.12), rgba(255,255,255,0.72));
    border: 1px solid rgba(47,125,77,0.12);
}

.area-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 22px;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    box-shadow: 0 14px 30px rgba(0,0,0,0.14);
}

.area-action-btn:hover {
    transform: translateY(-3px) scale(1.02);
    filter: brightness(1.03);
}

.area-action-btn.primary {
    background: linear-gradient(135deg, #2f7d4d, #4ca96b);
    color: #fff;
}

.area-action-btn.secondary {
    background: linear-gradient(135deg, #00b2ff, #006aff, #7b2cff);
    color: #fff;
}

/* ===== KONTAKT ===== */
.contact-page-section {
    background: linear-gradient(180deg, #f4f1ea 0%, #f8f5ef 100%);
}

.contact-card {
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(130, 120, 100, 0.10);
    border-radius: 30px;
    padding: 30px 28px;
    box-shadow: 0 16px 40px rgba(60, 50, 40, 0.08);
    transition: 0.35s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(60, 50, 40, 0.12);
}

.contact-card-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 20px;
    color: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.contact-card-icon.phone {
    background: linear-gradient(135deg, #2f7d4d, #4ca96b);
}

.contact-card-icon.message {
    background: linear-gradient(135deg, #1877f2, #6a5cff);
}

.contact-card-icon.social {
    background: linear-gradient(135deg, #d946ef 0%, #ef4444 50%, #f59e0b 100%);
}

.contact-card h3 {
    margin: 0 0 12px;
    font-size: 1.55rem;
    font-weight: 800;
    color: #2f3a32;
}

.contact-card p {
    margin: 0 0 20px;
    color: #5d675f;
    font-size: 1rem;
    line-height: 1.75;
}

.contact-main-link {
    font-size: 1.25rem;
    font-weight: 800;
    color: #2f7d4d;
    word-break: break-word;
}

.contact-subnote {
    margin-top: 10px;
    font-size: 0.94rem;
    color: #7a8378;
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 22px;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    box-shadow: 0 14px 30px rgba(0,0,0,0.14);
}

.contact-action-btn:hover {
    transform: translateY(-3px) scale(1.02);
    filter: brightness(1.03);
}

.contact-action-btn.phone {
    background: linear-gradient(135deg, #2f7d4d, #4ca96b);
}

.contact-action-btn.messenger {
    background: linear-gradient(135deg, #00b2ff, #006aff, #7b2cff);
}

.contact-action-btn.instagram {
    background: linear-gradient(135deg, #d946ef 0%, #ef4444 50%, #f59e0b 100%);
}

.contact-action-btn.mail {
    background: linear-gradient(135deg, #3f4b42, #6b756c);
}

.contact-highlight-box {
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(130, 120, 100, 0.10);
    border-radius: 32px;
    padding: 34px 30px;
    box-shadow: 0 16px 40px rgba(60, 50, 40, 0.08);
}

.contact-highlight-box h3 {
    margin: 0 0 14px;
    font-size: 2rem;
    font-weight: 800;
    color: #2f7d4d;
}

.contact-highlight-box p {
    margin: 0;
    color: #5d675f;
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-info-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.contact-info-list li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4e5950;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-info-list i {
    width: 22px;
    text-align: center;
    color: #2f7d4d;
}

.contact-cta-strip {
    background: linear-gradient(135deg, rgba(47,125,77,0.12), rgba(255,255,255,0.72));
    border: 1px solid rgba(47,125,77,0.12);
    border-radius: 28px;
    padding: 28px 26px;
    box-shadow: 0 14px 35px rgba(60, 50, 40, 0.07);
}

.contact-cta-strip h3 {
    margin: 0 0 10px;
    font-size: 1.7rem;
    font-weight: 800;
    color: #2f3a32;
}

.contact-cta-strip p {
    margin: 0 0 20px;
    color: #5d675f;
    line-height: 1.75;
}

/* ===== DOJAZD ===== */
.route-page-section {
    background: linear-gradient(180deg, #f4f1ea 0%, #f8f5ef 100%);
}

.route-info-card {
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(130, 120, 100, 0.10);
    border-radius: 30px;
    padding: 34px 30px;
    box-shadow: 0 16px 40px rgba(60, 50, 40, 0.08);
    height: 100%;
}

.route-info-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: rgba(47, 125, 77, 0.12);
    color: #2f7d4d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 22px;
}

.route-info-card h3 {
    margin: 0 0 14px;
    font-size: 1.8rem;
    font-weight: 800;
    color: #2f7d4d;
}

.route-info-card p {
    margin: 0;
    color: #5d675f;
    line-height: 1.8;
    font-size: 1.02rem;
}

.route-points {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.route-points li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #4e5950;
    font-size: 1rem;
    line-height: 1.75;
}

.route-points i {
    width: 22px;
    text-align: center;
    color: #2f7d4d;
    margin-top: 3px;
}

.route-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 22px;
    border-radius: 18px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    box-shadow: 0 14px 30px rgba(0,0,0,0.14);
}

.route-action-btn:hover {
    transform: translateY(-3px) scale(1.02);
    filter: brightness(1.03);
}

.route-action-btn.primary {
    background: linear-gradient(135deg, #2f7d4d, #4ca96b);
    color: #fff;
}

.route-action-btn.secondary {
    background: #fff;
    color: #2f7d4d;
    border: 1px solid rgba(47, 125, 77, 0.16);
}

.route-map-card {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(130, 120, 100, 0.10);
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 16px 40px rgba(60, 50, 40, 0.08);
    overflow: hidden;
    height: 100%;
}

.route-note-box {
    background: linear-gradient(135deg, rgba(47,125,77,0.12), rgba(255,255,255,0.72));
    border: 1px solid rgba(47,125,77,0.12);
    border-radius: 28px;
    padding: 28px 26px;
    box-shadow: 0 14px 35px rgba(60, 50, 40, 0.07);
}

.route-note-box h3 {
    margin: 0 0 10px;
    font-size: 1.7rem;
    font-weight: 800;
    color: #2f3a32;
}

.route-note-box p {
    margin: 0;
    color: #5d675f;
    line-height: 1.75;
}

/* ===== REGULAMIN / FAQ ===== */
.faq-section {
    background: linear-gradient(180deg, #f4f1ea 0%, #f8f5ef 100%);
}

.faq-group {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(130, 120, 100, 0.10);
    border-radius: 32px;
    padding: 34px 28px;
    box-shadow: 0 16px 40px rgba(60, 50, 40, 0.08);
}

.faq-group-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.55rem;
    font-weight: 800;
    color: #2f7d4d;
    margin-bottom: 22px;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(130, 120, 100, 0.10);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(60, 50, 40, 0.05);
    transition: 0.3s ease;
}

.faq-item + .faq-item {
    margin-top: 16px;
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    cursor: pointer;
    font-size: 1.06rem;
    font-weight: 700;
    color: #2f3a32;
    transition: 0.25s ease;
}

.faq-question:hover {
    background: rgba(47, 125, 77, 0.04);
}

.faq-question i {
    color: #2f7d4d;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 24px 22px;
}

.faq-answer p,
.faq-answer li {
    color: #5b655d;
    line-height: 1.75;
    font-size: 1rem;
}

.faq-answer p {
    margin: 0;
}

.faq-answer ul {
    margin: 0;
    padding-left: 20px;
}

.faq-note {
    background: rgba(47, 125, 77, 0.08);
    border: 1px solid rgba(47, 125, 77, 0.14);
    border-radius: 24px;
    padding: 24px;
    color: #425046;
    line-height: 1.75;
    font-size: 1rem;
    box-shadow: 0 12px 30px rgba(60, 50, 40, 0.06);
}

/* ===== RESPONSIVE PODSTRON ===== */
@media (max-width: 1024px) {
    .gallery-item.tall,
    .gallery-item.wide,
    .gallery-item.normal,
    .gallery-item.large {
        grid-column: span 6;
    }

    .attractions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .subpage-hero {
        min-height: auto;
        height: auto;
    }

    .subpage-hero .hero-layout {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 110px;
        padding-bottom: 90px;
        gap: 28px;
    }

    .subpage-title {
        font-size: 2.5rem;
        line-height: 1.02;
    }

    .subpage-lead {
        font-size: 1rem;
        padding: 10px 14px;
        border-radius: 14px;
    }

    .offer-card,
    .offer-highlight,
    .offer-cta-strip,
    .gallery-intro-box,
    .gallery-bottom-note,
    .area-intro-box,
    .area-highlight-box,
    .city-trip-box,
    .area-cta-strip,
    .attraction-card,
    .contact-card,
    .contact-highlight-box,
    .contact-cta-strip,
    .route-info-card,
    .route-map-card,
    .route-note-box,
    .faq-group {
        border-radius: 24px;
    }

    .offer-card,
    .offer-highlight,
    .offer-cta-strip,
    .gallery-intro-box,
    .gallery-bottom-note,
    .area-intro-box,
    .area-highlight-box,
    .city-trip-box,
    .area-cta-strip,
    .attraction-card,
    .contact-card,
    .contact-highlight-box,
    .contact-cta-strip,
    .route-info-card,
    .route-note-box,
    .faq-group {
        padding: 24px 20px;
    }

    .offer-card h3,
    .attraction-card h4 {
        font-size: 1.35rem;
    }

    .offer-highlight h3,
    .contact-highlight-box h3,
    .route-info-card h3,
    .area-intro-box h3,
    .area-highlight-box h3,
    .city-trip-box h3,
    .area-cta-strip h3,
    .gallery-intro-box h3,
    .gallery-bottom-note h3 {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-item.tall,
    .gallery-item.wide,
    .gallery-item.normal,
    .gallery-item.large {
        grid-column: span 1;
        min-height: 240px;
    }

    .gallery-badge {
        left: 12px;
        bottom: 12px;
        font-size: 0.82rem;
        padding: 8px 12px;
    }

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

    .faq-group-title {
        font-size: 1.25rem;
    }

    .faq-question {
        padding: 18px 18px;
        font-size: 0.98rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 18px;
    }

    .faq-answer {
        padding: 0 18px;
    }
}
/* płynne przejście */
.navbar {
    transition: all 0.3s ease;
}

/* ===== NAVBAR SCROLL GREEN ===== */
.navbar.scrolled {
    background: rgba(47, 125, 77, 0.95); /* Twój zielony */
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
}

/* tekst */
.navbar.scrolled a {
    color: #fff;
}

/* hover */
.navbar.scrolled a:hover {
    color: #d1fae5; /* jasna zieleń */
}

/* aktywna strona */
.navbar.scrolled a.nav-active {
    color: #bbf7d0;
}

/* podkreślenie */
.navbar.scrolled a::after {
    background: #bbf7d0;
}

/* logo */
.navbar.scrolled .brand-main {
    color: #ffffff;
}

.navbar.scrolled .brand-sub {
    color: rgba(255,255,255,0.7);
}
/* ===== CUSTOM SCROLLBAR ===== */

/* Chrome / Edge / Safari */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #111827; /* jak stopka */
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #2f7d4d, #4ca96b);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4ade80;
}
/* MOBILE NAVBAR */
.mobile-menu-btn {
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 2.5px;
    margin: 0 auto;
    background: #355b42;
    border-radius: 20px;
    transition: 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    background: rgba(250, 248, 242, 0.98);
    backdrop-filter: blur(10px);
    transition: max-height 0.35s ease;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.mobile-menu.open {
    max-height: 100vh;
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    padding: 18px 20px 24px;
    gap: 6px;
}

.mobile-menu-inner a {
    padding: 14px 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #355b42;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mobile-menu-inner a:last-child {
    border-bottom: 0;
}

.mobile-menu-call {
    margin-top: 12px;
    border-radius: 16px;
    background: #355b42;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px !important;
}

@media (max-width: 767px) {
    .navbar .container {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .navbar-logo {
        height: 50px;
        width: auto;
        flex-shrink: 0;
    }

    .navbar-brand {
        min-width: 0;
        max-width: calc(100% - 60px);
    }

    .navbar-brand-text {
        display: flex;
        flex-direction: column;
        line-height: 1;
        min-width: 0;
    }

    .brand-main {
        font-size: 1.9rem;
        letter-spacing: 0.04em;
    }

    .brand-sub {
        font-size: 0.72rem;
        letter-spacing: 0.20em;
    }
}
/* =========================================
   MOBILE HEADER FIX
========================================= */
@media (max-width: 768px) {

    /* ? WYWALAMY TE ELEMENTY */
    .hero-top-right-stack {
        display: none !important;
    }

    /*  HERO NA �RODEK */
    .hero-layout,
    .subpage-hero .hero-layout {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 90px;
        padding-bottom: 60px;
        gap: 20px;
        text-align: center;
    }

    /*  TEKST NA �RODEK */
    .hero-right,
    .subpage-right {
        width: 100%;
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    .hero-slider-wrap {
        align-items: center;
        justify-content: center;
    }

    .hero-slider-line,
    .hero-main-title,
    .subpage-title {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-main-lead,
    .subpage-lead {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    /*  BOX KONTAKTOWY NA �RODEK */
    .hero-left {
        order: 2;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .glass-box.hero-contact-box {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
        text-align: center;
        padding: 18px;
        border-radius: 20px;
    }

    .hero-contact-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-contact-buttons a {
        width: 100%;
        justify-content: center;
    }

    /*  LEPSZE KADROWANIE FILMU */
    .hero-bg video,
    .subpage-hero video {
        object-position: 60% center;
    }

    /* ?? LEPSZA CZYTELNO�� */
    .hero-overlay {
        background: rgba(0, 0, 0, 0.45);
    }
}
@media (max-width: 768px) {
    #floating-socials {
        display: none !important;
    }
}
/* =========================
   MOBILE HAMBURGER MENU
========================= */
.mobile-menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 130;
}

.mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    border-radius: 999px;
    background: #355b42;
    transition: transform 0.3s ease, opacity 0.25s ease, background 0.3s ease;
}

.mobile-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

@media (max-width: 768px) {
    .navbar {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .navbar-brand {
        display: flex;
        align-items: center;
        gap: 8px;
        max-width: calc(100% - 60px);
        overflow: hidden;
    }

    .navbar-logo {
        height: 40px;
        flex-shrink: 0;
    }

    .navbar-brand-text {
        min-width: 0;
        overflow: hidden;
    }

    .brand-main {
        font-size: 1.4rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-sub {
        font-size: 0.5rem;
        letter-spacing: 0.12em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
        width: 46px;
        height: 46px;
        z-index: 1201;
        position: relative;
    }

    .mobile-menu {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        background: rgba(251, 248, 242, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid rgba(120, 110, 90, 0.08);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
        transition: max-height 0.35s ease, opacity 0.3s ease;
        z-index: 1200;
    }

    .mobile-menu.is-open {
        max-height: 85vh;
        opacity: 1;
    }

    .mobile-menu-inner {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 14px 16px 18px;
    }

    .mobile-nav-link {
        display: block;
        padding: 13px 8px;
        border-bottom: 1px solid rgba(120, 110, 90, 0.08);
        color: #3f4b42;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.35;
    }

    .mobile-nav-link:last-of-type {
        border-bottom: none;
    }

    .mobile-nav-active {
        color: #2f7d4d;
    }

    .mobile-menu-call {
        margin-top: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        min-height: 50px;
        padding: 14px 16px;
        border-radius: 16px;
        text-decoration: none;
        font-size: 0.98rem;
        font-weight: 800;
        color: #fff;
        background: linear-gradient(135deg, #2f7d4d, #4ca96b);
        box-sizing: border-box;
    }

    .navbar.scrolled .mobile-menu-toggle span {
        background: #ffffff;
    }

    .navbar.scrolled .mobile-menu {
        background: rgba(47, 125, 77, 0.98);
    }

    .navbar.scrolled .mobile-nav-link {
        color: #ffffff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .navbar.scrolled .mobile-nav-active {
        color: #d1fae5;
    }

    .navbar.scrolled .mobile-menu-call {
        background: rgba(255, 255, 255, 0.12);
        color: #ffffff;
    }
}