:root {
    --green: #5d8a2e;
    --green-dark: #4b6e25;
    --cyan: #1a94a8;
    --cyan-dark: #157888;
    --yellow: #f5c842;
    --bg: #f0f4f8;
    --bg-white: #ffffff;
    --text: #1a1a2e;
    --text-muted: #64748b;
    --border: #e2e8f0;
}

@media (prefers-reduced-motion:reduce) {

    *,
    ::before,
    ::after {
        animation-delay: -1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        background-attachment: initial !important;
        scroll-behavior: auto !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
}

html,
body {
    overflow-x: clip;
}

html {
    min-height: 100vh;
    scroll-behavior: smooth;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--green) !important;
    outline-offset: 2px !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    color: var(--text);
    background: var(--bg-white);
    overflow-x: clip;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.min-h-screen {
    min-height: 100vh;
}

.section-padding {
    padding: 5rem 0;
}

@media (min-width:768px) {
    .section-padding {
        padding: 5rem 0;
    }
}

.flex-grow {
    flex-grow: 1;
}

.flex-1 {
    flex: 1 1 0%;
}

.pt-48 {
    padding-top: 8rem;
}

.pt-60 {
    padding-top: 10rem;
}

@media (min-width:768px) {
    .pt-48 {
        padding-top: 12rem;
    }

    .pt-60 {
        padding-top: 15rem;
    }
}

.pb-24 {
    padding-bottom: 6rem;
}

.pb-32 {
    padding-bottom: 8rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    margin: 0;
}

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

@media (min-width:640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width:768px) {
    .container {
        padding: 0 2.5rem;
    }
}

.nav-link {
    position: relative;
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.25rem;
    transition: color 0.2s;
    text-decoration: none;
}

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

.mobile-menu-dropdown {
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.22s ease-out, transform 0.22s ease-out;
}

.mobile-menu-dropdown.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hero-section {
    background: linear-gradient(160deg, #eef6ff 0%, #f8fbff 40%, #f0f9ee 100%);
    padding: 9rem 0 4rem;
    overflow: hidden;
}

@media (min-width:1024px) {
    .hero-section {
        padding: 12rem 0 5rem;
    }
}

.hero-stats-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 3rem;
    padding: 1.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(130, 192, 65, 0.2);
    border-radius: 1.25rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 24px rgba(130, 192, 65, 0.07), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.hero-stats-strip>div {
    padding: 0 1.5rem;
}

.hero-stats-strip>div+div {
    border-left: 1px solid #e2e8f0;
}

@media (max-width:639px) {
    .hero-stats-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 1.25rem;
    }

    .hero-stats-strip>div {
        padding: 1rem 0;
        width: 100%;
    }

    .hero-stats-strip>div:first-child {
        padding-top: 0;
    }

    .hero-stats-strip>div:last-child {
        padding-bottom: 0;
    }

    .hero-stats-strip>div+div {
        border-left: none;
        border-top: 1px solid #e2e8f0;
    }
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex: 1;
    min-width: 140px;
}

.hero-stat-icon-wrap {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    background: rgba(130, 192, 65, 0.1);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a2e;
    font-family: "Manrope", sans-serif;
    line-height: 1;
    margin: 0;
}

.hero-stat-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
    margin: 2px 0 0;
}

.open-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.open-status-badge.open {
    background: #E8F5D8;
    color: #5D8E1C;
}

.open-status-badge.closed {
    background: #fee2e2;
    color: #dc2626;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
}

.status-dot.open {
    background: #22c55e;
}

.status-dot.closed {
    background: #ef4444;
}

.hours-row-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.hours-row-item:last-child {
    border-bottom: none;
}

.hours-day-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.hours-day-label.today {
    color: var(--green);
    font-weight: 700;
}

.hours-day-label.today.closed {
    color: #dc2626;
}

.hours-time-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--green);
}

.hours-time-label.closed {
    color: #ef4444;
}

.gallery-item {
    height: 100%;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1.5px solid var(--green);
    color: #3d7a0a;
    background: rgba(130, 192, 65, 0.08);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.btn-green {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--green);
    color: #fff;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(130, 192, 65, 0.35);
}

.btn-green:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(130, 192, 65, 0.50);
}

.btn-orange {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f97316;
    color: #fff;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
}

.btn-orange:hover {
    background: #ea6c04;
    transform: translateY(-1px);
}

.btn-cyan {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--cyan);
    color: #fff;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(46, 185, 209, 0.35);
}

.btn-cyan:hover {
    background: var(--cyan-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 185, 209, 0.50);
}

.btn-outline-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text);
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1.5px solid #cbd5e1;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    text-decoration: none;
}

.btn-outline-phone:hover {
    border-color: var(--green);
    color: var(--green);
}

.section-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.badge-green {
    background: rgba(130, 192, 65, 0.12);
    color: #4a8a0e;
}

.badge-yellow {
    background: rgba(245, 200, 66, 0.18);
    color: #8a6900;
}

.badge-blue {
    background: rgba(46, 185, 209, 0.12);
    color: #0e6a7a;
}

.about-section {
    background: var(--bg);
}

.about-quote-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: #fff;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    font-size: 0.85rem;
    color: #374151;
    font-style: italic;
}

.about-stat-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid var(--border);
}

.about-stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.92rem;
    color: #374151;
}

.services-section {
    background: var(--bg);
}

.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.75rem;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.shadow-soft {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transition: transform 0.5s ease;
}

.img-zoom:hover img {
    transform: scale(1.05);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

#open-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    transition: background 0.3s;
}

.hours-section {
    background: var(--bg);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-open {
    color: var(--green);
    font-weight: 600;
}

.hours-closed {
    color: #ef4444;
    font-weight: 600;
}

.hours-today {
    font-weight: 700;
    color: var(--text);
}

.today-badge {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    vertical-align: middle;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (min-width:400px) {
    .contact-card {
        padding: 1.25rem 1.5rem;
    }
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.emergency-card {
    border: 1px solid rgba(130, 192, 65, 0.4);
    background: rgba(130, 192, 65, 0.06);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.testimonials-section {
    background: var(--bg);
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1.25rem;
    padding: 2.5rem 3rem;
    max-width: 820px;
    margin: 0 auto;
}

.testimonial-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(130, 192, 65, 0.15);
    color: var(--green);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.gallery-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.gallery-filter-btn {
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-filter-btn:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(130, 192, 65, 0.1);
}

.gallery-filter-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: var(--bg-white);
    box-shadow: 0 4px 20px rgba(130, 192, 65, 0.25);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 260px;
    gap: 1.5rem;
}

.gallery-grid-index {
    grid-auto-rows: 200px;
    gap: 1.5rem;
}

@media (min-width:768px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }

    .gallery-grid-index {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 180px;
    }
}

@media (min-width:1024px) {
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 220px;
    }

    .gallery-grid-index {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 220px;
    }
}

@media (min-width:1440px) {
    .bento-grid {
        grid-template-columns: repeat(5, 1fr);
        grid-auto-rows: 200px;
    }
}

.gallery-item {
    border-radius: 2.5rem;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: #fff;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px -15px rgba(130, 192, 65, 0.15);
    border-color: rgba(130, 192, 65, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item:hover img {
    transform: scale(1.12);
}

#gallery-lightbox {
    opacity: 0;
    transition: opacity 0.3s ease-out;
    backdrop-filter: blur(12px);
    background: rgba(15, 23, 42, 0.9);
}

#gallery-lightbox.lightbox-active {
    opacity: 1;
}

#gallery-lightbox img {
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    opacity: 1;
}

#gallery-lightbox.lightbox-active img {
    transform: scale(1) translateY(0);
}

#gallery-lightbox button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
}

[data-testid="gallery-lightbox-close"] {
    position: absolute !important;
    top: 1.5rem !important;
    right: 1.5rem !important;
    z-index: 150 !important;
}

@media (max-width:640px) {
    [data-testid="gallery-lightbox-close"] {
        top: 1rem !important;
        right: 1rem !important;
        width: 2.5rem !important;
        height: 2.5rem !important;
    }

    #gallery-lightbox img {
        max-width: 98vw !important;
        border-radius: 1rem !important;
    }
}

#gallery-lightbox button:hover {
    background: rgba(130, 192, 65, 0.8);
    border-color: #82c041;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(130, 192, 65, 0.3);
}

#gallery-lightbox .lightbox-prev:hover {
    transform: scale(1.1) translateX(-4px);
}

#gallery-lightbox .lightbox-next:hover {
    transform: scale(1.1) translateX(4px);
}

.faq-section {
    background: var(--bg-white);
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: rgba(130, 192, 65, 0.4);
}

.faq-content {
    overflow: hidden;
    transition: height 0.25s ease-out;
    height: 0;
}

.blog-section {
    background: var(--bg);
}

.blog-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-category {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
}

.cat-porady {
    background: rgba(46, 185, 209, 0.12);
    color: #0e6a7a;
}

.cat-profilaktyka {
    background: rgba(130, 192, 65, 0.12);
    color: #4a8a0e;
}

.cat-zywienie {
    background: rgba(245, 200, 66, 0.18);
    color: #8a6900;
}

.footer-section {
    background: #12121e;
    color: rgba(255, 255, 255, 0.85);
}

.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--green);
    padding: 0.85rem 1rem;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
    text-decoration: none;
}

@media (max-width:767px) {
    .mobile-call-bar {
        display: flex;
    }
}

.toast-root {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-radius: 0.75rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    min-width: 260px;
    animation: toast-in 0.3s ease-out;
}

.toast.success {
    border-color: var(--green);
}

.toast.error {
    border-color: #ef4444;
}

@keyframes toast-in {
    from {
        transform: translateY(-12px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#service-modal.modal-active {
    opacity: 1;
    pointer-events: auto;
}

#service-modal.modal-active .service-modal-content {
    transform: scale(1);
}

.js-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.js-reveal.visible {
    opacity: 1;
    transform: none;
}

.hero-reveal {
    opacity: 0;
    transform: translateY(24px);
}

.hero-reveal.visible {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: slide 45s linear infinite;
    padding: 1rem 0;
    min-height: 280px;
}

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

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: var(--green);
    border-radius: 4px;
}

.team-swiper {
    position: relative;
    padding-bottom: 4rem !important;
}

.team-swiper .swiper-button-next,
.team-swiper .swiper-button-prev {
    background: var(--bg-white);
    color: var(--green);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 999px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    top: 40%;
    transition: all 0.3s;
}

.team-swiper .swiper-button-prev {
    left: 1rem;
}

.team-swiper .swiper-button-next {
    right: 1rem;
}

.team-swiper .swiper-button-next:hover,
.team-swiper .swiper-button-prev:hover {
    background: var(--green);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(130, 192, 65, 0.4);
}

.team-swiper .swiper-button-next::after,
.team-swiper .swiper-button-prev::after {
    font-size: 1.15rem;
    font-weight: 800;
}

.team-swiper .swiper-button-disabled {
    opacity: 0 !important;
    pointer-events: none;
}

.team-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
}

.team-swiper .swiper-pagination-bullet-active {
    background: var(--green);
    width: 24px;
    border-radius: 999px;
}

.booking-cta-container {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fbf7 100%);
    border: 1px solid rgba(130, 192, 65, 0.25);
    border-radius: 1.25rem;
    box-shadow: 0 10px 30px -10px rgba(130, 192, 65, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.booking-cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--green) 0%, #82c041 50%, var(--cyan) 100%);
}

.booking-cta-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(130, 192, 65, 0.25);
    border-color: rgba(130, 192, 65, 0.4);
}

.booking-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    background: rgba(130, 192, 65, 0.1);
    color: #4a8a0e;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.booking-badge .pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #22c55e;
    border-radius: 50%;
    position: relative;
}

.booking-badge .pulse-dot::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #22c55e;
    opacity: 0.4;
    animation: booking-pulse 1.8s infinite ease-out;
}

@keyframes booking-pulse {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.booking-cta-title {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: #1a1a2e;
    margin: 0 0 0.25rem 0;
}

.booking-cta-desc {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0 0 1.25rem 0;
    line-height: 1.4;
}

.btn-booking-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: linear-gradient(135deg, #82c041 0%, var(--green) 100%);
    color: #fff;
    padding: 0.95rem 2rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    width: 100%;
    box-shadow: 0 6px 20px rgba(130, 192, 65, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-booking-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.btn-booking-premium:hover {
    background: linear-gradient(135deg, #94d352 0%, var(--green-dark) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(130, 192, 65, 0.50);
}

.btn-booking-premium:hover::after {
    left: 100%;
}

.btn-booking-premium svg {
    transition: transform 0.3s ease;
}

.btn-booking-premium:hover svg {
    transform: scale(1.1) rotate(5deg);
}

.btn-booking-premium .arrow-icon {
    margin-left: 0.25rem;
    transition: transform 0.3s ease;
}

.btn-booking-premium:hover .arrow-icon {
    transform: translateX(4px);
}