:root {
    --primary: #3B82F6;
    --secondary: #60A5FA;
    --accent: #F59E0B;
    --background-main: #F8FAFC;
    --background-alt: #FFFFFF;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --border-color: rgba(226, 232, 240, 0.8);
    --glass-overlay: rgba(255, 255, 255, 0.7);
    --radius-xl: 24px;
    --primary-gradient: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-main);
    color: var(--text-primary);
    font-size: 1.125rem;
    line-height: 1.7;
    overflow-x: hidden;
}

.text-muted {
    color: var(--text-secondary) !important;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.smooth-scroll {
    scroll-behavior: smooth;
}

.glass-panel {
    background: var(--glass-overlay);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
}

.btn-primary-custom {
    background: var(--primary-gradient);
    color: #fff;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 600;
    border: none;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
    color: #fff;
}

/* ===== header ===== */
#header-jarniko {
    z-index: 1050;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

#header-jarniko .top-bar {
    background-color: #f8fafc;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

#header-jarniko .top-bar-link {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

#header-jarniko .top-bar-link:hover {
    color: #3b82f6;
}

#header-jarniko .navbar {
    background-color: #ffffff !important;
    padding: 0.75rem 0;
}

#header-jarniko .logo-img {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

#header-jarniko .navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

#header-jarniko .nav-link {
    color: #1e293b;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

#header-jarniko .nav-link:hover {
    color: #3b82f6;
}

#header-jarniko .btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#header-jarniko .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

#header-jarniko .navbar-toggler {
    border: none;
    padding: 0.5rem;
    color: #1e293b;
}

#header-jarniko .navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    #header-jarniko .navbar-collapse {
        background-color: #ffffff;
        padding: 1.5rem 0;
        margin-top: 0.5rem;
    }

    #header-jarniko .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    }

    #header-jarniko .nav-item:last-child .nav-link {
        border-bottom: none;
    }
}

/* ===== hero ===== */
.jarniko-hero-block {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.jarniko-hero-block .hero-main-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.jarniko-hero-block .hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.jarniko-hero-block .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.jarniko-hero-block .hero-content-container {
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 100px;
}

.jarniko-hero-block .hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #FFFFFF;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.jarniko-hero-block .hero-accent {
    color: #F59E0B;
}

.jarniko-hero-block .hero-description {
    font-size: 1.25rem;
    color: #E2E8F0;
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 0;
}

.jarniko-hero-block .hero-form-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.jarniko-hero-block .hero-form-label {
    display: block;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.jarniko-hero-block .hero-form-input {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    color: #1E293B;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.jarniko-hero-block .hero-form-input:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.jarniko-hero-block .hero-form-input::placeholder {
    color: #94A3B8;
}

.jarniko-hero-block .hero-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #FFFFFF;
    border: none;
    padding: 1rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.jarniko-hero-block .hero-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.4);
    filter: brightness(1.1);
}

@media (max-width: 991px) {
    .jarniko-hero-block .hero-title {
        font-size: 2.5rem;
    }

    .jarniko-hero-block .hero-content-container {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 767px) {
    .jarniko-hero-block .hero-title {
        font-size: 18px !important;
    }

    .jarniko-hero-block .hero-description {
        font-size: 14px;
    }

    .jarniko-hero-block .hero-form-card {
        padding: 1.5rem;
    }
}

/* ===== resorts_preview ===== */
.resorts-preview-section {
    padding: 120px 0;
    background-color: #F8FAFC;
    overflow-x: hidden
}

.resorts-preview-section .section-title {
    color: #1E293B;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem
}

.resorts-preview-section .section-subtitle {
    color: #64748B;
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto
}

.resorts-preview-section .resort-card {
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden
}

.resorts-preview-section .resort-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1)
}

.resorts-preview-section .resort-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease
}

.resorts-preview-section .resort-card:hover .resort-img {
    transform: scale(1.05)
}

.resorts-preview-section .card-body {
    padding: 2rem
}

.resorts-preview-section .card-title {
    color: #1E293B;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease
}

.resorts-preview-section .card-title-link {
    text-decoration: none
}

.resorts-preview-section .card-title-link:hover .card-title {
    color: #3B82F6
}

.resorts-preview-section .resort-price {
    color: #3B82F6;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem
}

.resorts-preview-section .card-text {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 1.5rem
}

.resorts-preview-section .btn-resort {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 12px 32px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #FFFFFF;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease
}

.resorts-preview-section .btn-resort:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    color: #FFFFFF
}

@media(max-width:768px) {
    .resorts-preview-section {
        padding: 60px 0
    }

    .resorts-preview-section .section-title {
        font-size: 1.75rem
    }

    .resorts-preview-section .resort-img {
        height: 220px
    }
}

/* ===== activities_preview ===== */
.activities-preview-section {
    background-color: #F8FAFC;
    padding: 120px 0;
}

.activities-preview-section .section-title {
    color: #1E293B;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.activities-preview-section .section-subtitle {
    color: #64748B;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.activities-preview-section .activity-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.activities-preview-section .activity-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.activities-preview-section .activity-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.activities-preview-section .activity-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activities-preview-section .activity-card:hover .activity-img {
    transform: scale(1.1);
}

.activities-preview-section .activity-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1E293B;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.activities-preview-section .activity-badge i {
    color: #3B82F6;
}

.activities-preview-section .activity-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.activities-preview-section .activity-title-link {
    text-decoration: none;
}

.activities-preview-section .activity-title {
    color: #1E293B;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.activities-preview-section .activity-title:hover {
    color: #3B82F6;
}

.activities-preview-section .activity-description {
    color: #64748B;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.activities-preview-section .activity-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.activities-preview-section .activity-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: #3B82F6;
}

.activities-preview-section .activity-btn {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #FFFFFF !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.activities-preview-section .activity-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    filter: brightness(1.1);
}

@media (max-width: 767.98px) {
    .activities-preview-section {
        padding: 60px 0;
    }

    .activities-preview-section .section-title {
        font-size: 16px !important;
    }

    .activities-preview-section .activity-title {
        font-size: 14px !important;
    }

    .activities-preview-section .section-subtitle {
        font-size: 0.9rem;
    }
}

/* ===== guide_preview ===== */
.guide-preview-section {
    padding: 120px 0;
    background-color: #F8FAFC;
    overflow: hidden;
}

.guide-preview-section .section-title {
    color: #1E293B;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.guide-preview-section .section-subtitle {
    color: #64748B;
    font-size: 1.125rem;
    line-height: 1.7;
}

.guide-preview-section .guide-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.guide-preview-section .guide-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.guide-preview-section .guide-card-img-link {
    display: block;
    height: 280px;
    overflow: hidden;
}

.guide-preview-section .guide-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.guide-preview-section .guide-card:hover .guide-card-img {
    transform: scale(1.1);
}

.guide-preview-section .guide-card-body {
    padding: 2rem;
    flex-grow: 1;
}

.guide-preview-section .guide-card-meta {
    font-size: 0.875rem;
    color: #475569;
    font-weight: 500;
}

.guide-preview-section .meta-divider {
    width: 1px;
    height: 14px;
    background-color: #CBD5E1;
}

.guide-preview-section .guide-card-title-link {
    text-decoration: none;
    color: inherit;
}

.guide-preview-section .guide-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.guide-preview-section .guide-card:hover .guide-card-title {
    color: #3B82F6;
}

.guide-preview-section .guide-card-text {
    color: #64748B;
    font-size: 1rem;
    line-height: 1.6;
}

.guide-preview-section .guide-card-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: #FFFFFF;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    text-align: center;
}

.guide-preview-section .guide-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
    filter: brightness(1.1);
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .guide-preview-section {
        padding: 60px 0;
    }

    .guide-preview-section .section-title {
        font-size: 1.75rem;
    }

    .guide-preview-section .guide-card-img-link {
        height: 200px;
    }

    .guide-preview-section .guide-card-body {
        padding: 1.5rem;
    }

    .guide-preview-section .guide-card-title {
        font-size: 1.25rem;
    }
}

/* ===== footer ===== */
.jarniko-footer {
    padding: 80px 0 40px;
    background-color: #FFFFFF;
    color: #1E293B;
    font-family: 'Inter', sans-serif;
}

.jarniko-footer .footer-logo {
    max-width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}

.jarniko-footer .footer-logo:hover {
    transform: scale(1.05);
}

.jarniko-footer .footer-brand-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748B;
    max-width: 320px;
}

.jarniko-footer .footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.jarniko-footer .footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jarniko-footer .footer-nav-list li {
    margin-bottom: 0.75rem;
}

.jarniko-footer .footer-nav-link {
    color: #64748B;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-block;
}

.jarniko-footer .footer-nav-link:hover {
    color: #3B82F6;
    transform: translateX(5px);
}

.jarniko-footer .footer-contact-item {
    display: flex;
    align-items: center;
    color: #64748B;
    margin-bottom: 1rem;
}

.jarniko-footer .footer-contact-item a {
    color: #1E293B;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.jarniko-footer .footer-contact-item a:hover {
    color: #3B82F6;
}

.jarniko-footer .footer-tagline {
    font-size: 0.9rem;
    font-style: italic;
    color: #64748B;
}

.jarniko-footer .footer-bottom-bar {
    border-color: rgba(226, 232, 240, 0.8) !important;
}

.jarniko-footer .footer-copyright {
    font-size: 0.9rem;
    color: #64748B;
}

.jarniko-footer .footer-security-text {
    font-size: 0.9rem;
    color: #3B82F6;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .jarniko-footer {
        padding: 60px 0 30px;
        text-align: center;
    }

    .jarniko-footer .footer-brand-text {
        margin: 0 auto;
    }

    .jarniko-footer .footer-nav-link:hover {
        transform: none;
    }

    .jarniko-footer .footer-contact-item {
        justify-content: center;
    }
}

.repeat-theme-page {
    font-family: 'Inter', sans-serif;
    color: #1E293B;
    overflow-x: hidden;
}

#header-jarniko {
    z-index: 1050;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

#header-jarniko .top-bar {
    background-color: #f8fafc;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

#header-jarniko .top-bar-link {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

#header-jarniko .top-bar-link:hover {
    color: #3b82f6;
}

#header-jarniko .navbar {
    background-color: #ffffff !important;
    padding: 0.75rem 0;
}

#header-jarniko .logo-img {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

#header-jarniko .nav-link {
    color: #1e293b;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

#header-jarniko .btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.repeat-theme-page .hero-section {
    background: linear-gradient(180deg, #F0F9FF 0%, #E0F2FE 100%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.repeat-theme-page .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1E293B;
    letter-spacing: -0.02em;
}

.repeat-theme-page .hero-subtitle {
    font-size: 1.25rem;
    color: #64748B;
    line-height: 1.6;
}

.repeat-theme-page .repeat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.repeat-theme-page .repeat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.repeat-theme-page .card-img-wrapper {
    position: relative;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    height: 240px;
}

.repeat-theme-page .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.repeat-theme-page .repeat-card:hover .card-img-top {
    transform: scale(1.1);
}

.repeat-theme-page .card-badge-overlay {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

.repeat-theme-page .card-badge-overlay .badge {
    background: rgba(255, 255, 255, 0.9);
    color: #3B82F6;
    font-weight: 700;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.repeat-theme-page .meta-info {
    color: #F59E0B;
    font-weight: 600;
}

.repeat-theme-page .meta-price,
.repeat-theme-page .meta-author {
    color: #64748B;
    font-size: 0.9rem;
    font-weight: 500;
}

.repeat-theme-page .card-title {
    color: #1E293B;
    font-weight: 700;
}

.repeat-theme-page .btn-outline-primary {
    border: 2px solid #3B82F6;
    color: #3B82F6;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.repeat-theme-page .btn-outline-primary:hover {
    background: #3B82F6;
    color: #FFFFFF;
    transform: translateY(-2px);
}

.repeat-theme-page .cta-glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.repeat-theme-page .form-control {
    border: 1px solid rgba(226, 232, 240, 0.8);
    background-color: #FFFFFF;
    color: #1E293B;
}

.repeat-theme-page .form-control:focus {
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    border-color: #3B82F6;
}

.jarniko-footer {
    padding: 80px 0 40px;
    background-color: #FFFFFF;
}

.jarniko-footer .footer-logo {
    max-width: 50px;
}

.jarniko-footer .footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3B82F6;
    margin-bottom: 1.5rem;
}

.jarniko-footer .footer-nav-list {
    list-style: none;
    padding: 0;
}

.jarniko-footer .footer-nav-link {
    color: #64748B;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.jarniko-footer .footer-nav-link:hover {
    color: #3B82F6;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .repeat-theme-page .hero-title {
        font-size: 2rem;
    }

    .repeat-theme-page .hero-subtitle {
        font-size: 1rem;
    }

    .repeat-theme-page .cta-glass-card {
        padding: 2rem !important;
    }
}


/* ===== PAGE: privacy ===== */
.policy-container-wrapper {
    background-color: #F8FAFC;
    padding: 120px 0;
    font-family: 'Inter', sans-serif;
    color: #1E293B;
}

.policy-inner-content {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    line-height: 1.7;
}

.policy-inner-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #3B82F6;
    line-height: 1.3;
}

.policy-inner-content p {
    font-size: 1.125rem;
    margin-bottom: 24px;
    color: #475569;
}

.policy-inner-content ul {
    margin-bottom: 30px;
    padding-left: 0;
    list-style: none;
}

.policy-inner-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #475569;
}

.policy-inner-content ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #60A5FA;
    font-size: 1.1rem;
}

.policy-inner-content strong {
    color: #1E293B;
    font-weight: 600;
}

.policy-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    font-style: italic;
}

.policy-footer p {
    font-size: 0.95rem;
    color: #64748B;
}

@media (max-width: 768px) {
    .policy-container-wrapper {
        padding: 60px 0;
    }
    .policy-inner-content {
        padding: 30px 20px;
        border-radius: 16px;
        margin: 0 15px;
    }
    .policy-inner-content h2 {
        font-size: 16px !important;
        margin-top: 25px;
    }
    .policy-inner-content p {
        font-size: 14px !important;
    }
    .policy-inner-content ul li {
        font-size: 13px !important;
    }
    .policy-inner-content h1 {
        font-size: 18px !important;
    }
    .policy-inner-content h3 {
        font-size: 14px !important;
    }
}

/* ===== PAGE: terms ===== */
.policy-container-wrapper { background-color: #F8FAFC; min-height: 100vh; padding: 60px 0; font-family: 'Inter', sans-serif; } .policy-container-wrapper .terms-card { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px); border-radius: 24px; border: 1px solid rgba(226, 232, 240, 0.8); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); } .policy-container-wrapper .terms-main-title { font-size: 2.5rem; font-weight: 800; color: #1E293B; letter-spacing: -0.02em; line-height: 1.2; } .policy-container-wrapper .terms-intro-text { font-size: 1.25rem; color: #64748B; line-height: 1.6; } .policy-container-wrapper .terms-section-title { font-size: 1.5rem; font-weight: 700; color: #3B82F6; margin-bottom: 1.25rem; display: flex; align-items: center; line-height: 1.3; } .policy-container-wrapper .terms-section-title i { font-size: 1.25rem; color: #60A5FA; } .policy-container-wrapper .terms-description { font-size: 1.1rem; line-height: 1.8; color: #475569; margin-bottom: 1rem; } .policy-container-wrapper .terms-list { list-style: none; padding-left: 0; margin-bottom: 1.5rem; } .policy-container-wrapper .terms-list li { position: relative; padding-left: 1.75rem; margin-bottom: 0.75rem; color: #475569; font-size: 1.1rem; line-height: 1.6; } .policy-container-wrapper .terms-list li::before { content: '\f058'; font-family: 'Font Awesome 5 Free'; font-weight: 900; position: absolute; left: 0; color: #10B981; font-size: 1rem; } .policy-container-wrapper .terms-footer-note { border-color: rgba(226, 232, 240, 0.8) !important; } @media (max-width: 767.98px) { .policy-container-wrapper { padding: 40px 0; } .policy-container-wrapper .terms-main-title { font-size: 18px !important; margin-bottom: 1rem; } .policy-container-wrapper .terms-section-title { font-size: 16px !important; } .policy-container-wrapper .terms-intro-text { font-size: 14px; } .policy-container-wrapper .terms-description, .policy-container-wrapper .terms-list li { font-size: 14px; } .policy-container-wrapper .terms-card { padding: 1.5rem !important; border-radius: 16px; } }

/* ===== PAGE: disclaimer ===== */
.policy-container-wrapper {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  color: #1E293B;
  line-height: 1.7;
  background-color: #FFFFFF;
}

.disclaimer-content {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.last-updated {
  font-size: 0.9rem;
  color: #64748B;
  margin-bottom: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.disclaimer-section {
  margin-bottom: 40px;
}

.disclaimer-section h2 {
  color: #3B82F6;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  border-left: 4px solid #3B82F6;
  padding-left: 15px;
}

.disclaimer-section p {
  margin-bottom: 1.5rem;
  text-align: justify;
  hyphens: auto;
}

.disclaimer-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.disclaimer-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #475569;
}

.disclaimer-section ul li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #3B82F6;
}

@media (max-width: 768px) {
  .policy-container-wrapper {
    padding: 30px 15px;
  }
  
  .disclaimer-content {
    padding: 25px 20px;
  }

  .disclaimer-section h2 {
    font-size: 1.1rem;
  }

  .disclaimer-section p,
  .disclaimer-section ul li {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

@media (prefers-color-scheme: dark) {
  .policy-container-wrapper {
    background-color: #0F172A;
    color: #F8FAFC;
  }
  .disclaimer-content {
    background: #1E293B;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  .disclaimer-section h2 {
    color: #60A5FA;
    border-left-color: #60A5FA;
  }
  .disclaimer-section ul li {
    color: #E2E8F0;
  }
  .last-updated {
    color: #94A3B8;
  }
}

/* ===== PAGE: cookies ===== */
.policy-container-wrapper {
  padding: 40px 20px;
  background-color: #F8FAFC;
  color: #1E293B;
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

.policy-container-wrapper h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3B82F6;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.policy-container-wrapper h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1E293B;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid rgba(59, 130, 246, 0.1);
  padding-bottom: 0.5rem;
}

.policy-container-wrapper p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: #64748B;
}

.policy-container-wrapper ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style-type: disc;
}

.policy-container-wrapper li {
  margin-bottom: 0.75rem;
  color: #64748B;
}

.policy-container-wrapper strong {
  color: #1E293B;
  font-weight: 600;
}

@media (max-width: 768px) {
  .policy-container-wrapper {
    padding: 24px 15px;
  }
  .policy-container-wrapper h1 {
    font-size: 18px !important;
    margin-bottom: 1.5rem;
  }
  .policy-container-wrapper h2 {
    font-size: 16px !important;
    margin-top: 2rem;
  }
  .policy-container-wrapper h3 {
    font-size: 14px !important;
  }
  .policy-container-wrapper p, .policy-container-wrapper li {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* ===== PAGE: contacts-booking ===== */
.contacts-booking-page .form-outline .form-control {
    background-color: #f8fafc !important;
    border-radius: 12px;
}
.contacts-booking-page .form-label {
    color: #64748B;
}
.contacts-booking-page .btn-primary {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contacts-booking-page .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}
.contacts-booking-page .contact-info-card {
    position: relative;
    overflow: hidden;
}
.contacts-booking-page .contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
}
.contacts-booking-page .contact-info-card > * {
    position: relative;
    z-index: 1;
}
.contacts-booking-page .invalid-feedback {
    font-size: 0.85rem;
    margin-top: 0.5rem;
}
@media (max-width: 767.98px) {
    .contacts-booking-page .p-5 {
        padding: 1.5rem !important;
    }
    .contacts-booking-page h2 {
        font-size: 1.5rem;
    }
}

.main-comment-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-comment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    object-fit: cover;
    border: 2px solid #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.comment-author-name {
    color: #1E293B;
    font-weight: 700;
    font-size: 1.1rem;
}

.comment-timestamp {
    color: #64748B;
    font-weight: 500;
}

.comment-content p {
    color: #1E293B;
    line-height: 1.7;
    font-size: 1rem;
}

.comment-footer .btn-link {
    font-size: 0.875rem;
    transition: opacity 0.2s ease;
}

.comment-footer .btn-link:hover {
    opacity: 0.75;
}

.reply-comment-wrapper {
    border-left: 2px solid rgba(59, 130, 246, 0.2);
}

.reply-comment-card {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
}

.reply-avatar {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #FFFFFF;
}

.reply-author-name {
    color: #1E293B;
    font-weight: 600;
    font-size: 0.95rem;
}

.reply-content p {
    color: #64748B;
    font-size: 0.925rem;
    line-height: 1.6;
}

.badge.bg-primary {
    font-size: 0.7rem;
    padding: 0.35em 0.8em;
    background-color: #3B82F6 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* ===== PAGE TEMPLATE: ski-resorts ===== */
.jarniko-detail-page {
    font-family: 'Inter', sans-serif;
    background-color: #F8FAFC;
}

.jarniko-detail-page .detail-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.jarniko-detail-page .detail-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(30, 41, 59, 0.8) 100%);
    z-index: 1;
}

.jarniko-detail-page .detail-hero .container {
    z-index: 2;
}

.jarniko-detail-page .content-card {
    border: none;
    overflow: hidden;
}

.jarniko-detail-page .rich-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #1e293b;
}

.jarniko-detail-page .rich-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #3b82f6;
}

.jarniko-detail-page .rich-text p {
    margin-bottom: 1.5rem;
}

.jarniko-detail-page .rich-text ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.jarniko-detail-page .rich-text li {
    margin-bottom: 0.75rem;
    list-style: none;
    position: relative;
}

.jarniko-detail-page .rich-text li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: -1.5rem;
    color: #3b82f6;
}

.jarniko-detail-page .bg-soft-blue {
    background-color: #E0F2FE;
}

.jarniko-detail-page .sidebar-link {
    transition: color 0.3s ease;
}

.jarniko-detail-page .sidebar-link:hover {
    color: #3b82f6 !important;
}

.jarniko-detail-page .btn-floating {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jarniko-detail-page .btn-floating:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#header-jarniko {
    z-index: 1050;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

#header-jarniko .navbar {
    background-color: #ffffff !important;
    padding: 0.75rem 0;
}

#header-jarniko .logo-img {
    max-width: 45px;
    height: auto;
}

.jarniko-footer {
    padding: 80px 0 40px;
    background-color: #FFFFFF;
}

.jarniko-footer .footer-logo {
    max-width: 50px;
}

.jarniko-footer .footer-nav-link {
    color: #64748B;
    text-decoration: none;
    transition: 0.3s ease;
}

.jarniko-footer .footer-nav-link:hover {
    color: #3B82F6;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .jarniko-detail-page .detail-hero {
        min-height: 300px;
    }

    .jarniko-detail-page .rich-text {
        font-size: 1rem;
    }
}

/* Whitegen fixes */
.jarniko-footer .footer-logo-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #1E293B;
    text-decoration: none;
}

.jarniko-footer .footer-logo-wrapper::after {
    content: "Jarniko";
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #1E293B;
    line-height: 1;
}

.repeat-theme-page .card-img-wrapper {
    height: 240px;
    background-color: #E2E8F0;
}

.repeat-theme-page .card-img-top {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newsletter-feedback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    background-color: #DBEAFE;
    color: #1E3A8A;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
}

.newsletter-feedback[hidden] {
    display: none !important;
}

.policy-page .category-hero-section .lead {
    display: inline-block;
    padding: 0.65rem 1rem;
    border-radius: 14px;
    background-color: rgba(15, 23, 42, 0.45);
    color: #FFFFFF !important;
    opacity: 1 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.policy-page .category-content-wrapper {
    background-color: #F8FAFC;
    padding: 70px 20px;
}

.policy-page .policy-container-wrapper {
    max-width: none;
    margin: 0;
    padding: 0;
    background-color: transparent;
}

.policy-page .policy-inner-content,
.policy-page .terms-card,
.policy-page .disclaimer-content,
.policy-page .js-policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 24px;
    background-color: #FFFFFF;
    color: #1E293B;
    line-height: 1.7;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.07);
}

.policy-page .terms-content-section .container {
    max-width: 960px;
}

.policy-page .policy-inner-content h1,
.policy-page .terms-main-title,
.policy-page .js-main-title {
    color: #1E293B;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.policy-page .policy-inner-content h2,
.policy-page .terms-section-title,
.policy-page .disclaimer-section h2,
.policy-page .js-policy-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    padding: 0 0 0 1rem;
    border: 0;
    border-left: 4px solid #3B82F6;
    color: #3B82F6;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.3;
}

.policy-page .terms-section-title i {
    color: #3B82F6;
}

.policy-page .policy-inner-content p,
.policy-page .terms-description,
.policy-page .terms-intro-text,
.policy-page .disclaimer-section p,
.policy-page .js-policy-content p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.75;
    text-align: left;
}

.policy-page .policy-inner-content ul,
.policy-page .terms-list,
.policy-page .disclaimer-section ul,
.policy-page .js-policy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 0;
    list-style: none;
}

.policy-page .policy-inner-content li,
.policy-page .terms-list li,
.policy-page .disclaimer-section li,
.policy-page .js-policy-content li {
    position: relative;
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.65;
}

.policy-page .policy-inner-content li::before,
.policy-page .terms-list li::before,
.policy-page .disclaimer-section li::before,
.policy-page .js-policy-content li::before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: #60A5FA;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.policy-page strong {
    color: #1E293B;
}

@media (max-width: 767.98px) {
    .policy-page .category-content-wrapper {
        padding: 40px 15px;
    }

    .policy-page .policy-inner-content,
    .policy-page .terms-card,
    .policy-page .disclaimer-content,
    .policy-page .js-policy-content {
        padding: 28px 20px !important;
        border-radius: 16px;
    }

    .policy-page .policy-inner-content h1,
    .policy-page .terms-main-title,
    .policy-page .js-main-title {
        font-size: 1.5rem !important;
    }

    .policy-page .policy-inner-content h2,
    .policy-page .terms-section-title,
    .policy-page .disclaimer-section h2,
    .policy-page .js-policy-content h2 {
        font-size: 1.15rem !important;
    }

    .policy-page .policy-inner-content p,
    .policy-page .terms-description,
    .policy-page .terms-intro-text,
    .policy-page .disclaimer-section p,
    .policy-page .js-policy-content p,
    .policy-page .policy-inner-content li,
    .policy-page .terms-list li,
    .policy-page .disclaimer-section li,
    .policy-page .js-policy-content li {
        font-size: 0.95rem !important;
    }
}

/* ===== PAGE TEMPLATE: winter-activities ===== */
.jarniko-detail-page {
    font-family: 'Inter', sans-serif;
    background-color: #F8FAFC;
}

.jarniko-detail-page .detail-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.jarniko-detail-page .detail-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(30, 41, 59, 0.8) 100%);
    z-index: 1;
}

.jarniko-detail-page .detail-hero .container {
    z-index: 2;
}

.jarniko-detail-page .content-card {
    border: none;
    overflow: hidden;
}

.jarniko-detail-page .rich-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #1e293b;
}

.jarniko-detail-page .rich-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #3b82f6;
}

.jarniko-detail-page .rich-text p {
    margin-bottom: 1.5rem;
}

.jarniko-detail-page .rich-text ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.jarniko-detail-page .rich-text li {
    margin-bottom: 0.75rem;
    list-style: none;
    position: relative;
}

.jarniko-detail-page .rich-text li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: -1.5rem;
    color: #3b82f6;
}

.jarniko-detail-page .bg-soft-blue {
    background-color: #E0F2FE;
}

.jarniko-detail-page .sidebar-link {
    transition: color 0.3s ease;
}

.jarniko-detail-page .sidebar-link:hover {
    color: #3b82f6 !important;
}

.jarniko-detail-page .btn-floating {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jarniko-detail-page .btn-floating:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#header-jarniko {
    z-index: 1050;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

#header-jarniko .navbar {
    background-color: #ffffff !important;
    padding: 0.75rem 0;
}

#header-jarniko .logo-img {
    max-width: 45px;
    height: auto;
}

.jarniko-footer {
    padding: 80px 0 40px;
    background-color: #FFFFFF;
}

.jarniko-footer .footer-logo {
    max-width: 50px;
}

.jarniko-footer .footer-nav-link {
    color: #64748B;
    text-decoration: none;
    transition: 0.3s ease;
}

.jarniko-footer .footer-nav-link:hover {
    color: #3B82F6;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .jarniko-detail-page .detail-hero {
        min-height: 300px;
    }

    .jarniko-detail-page .rich-text {
        font-size: 1rem;
    }
}

/* ===== PAGE TEMPLATE: preparation-guide ===== */
.jarniko-detail-page {
    font-family: 'Inter', sans-serif;
    background-color: #F8FAFC;
}

.jarniko-detail-page .detail-hero {
    min-height: 400px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.jarniko-detail-page .detail-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(30, 41, 59, 0.8) 100%);
    z-index: 1;
}

.jarniko-detail-page .detail-hero .container {
    z-index: 2;
}

.jarniko-detail-page .content-card {
    border: none;
    overflow: hidden;
}

.jarniko-detail-page .rich-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #1e293b;
}

.jarniko-detail-page .rich-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #3b82f6;
}

.jarniko-detail-page .rich-text p {
    margin-bottom: 1.5rem;
}

.jarniko-detail-page .rich-text ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.jarniko-detail-page .rich-text li {
    margin-bottom: 0.75rem;
    list-style: none;
    position: relative;
}

.jarniko-detail-page .rich-text li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: -1.5rem;
    color: #3b82f6;
}

.jarniko-detail-page .bg-soft-blue {
    background-color: #E0F2FE;
}

.jarniko-detail-page .sidebar-link {
    transition: color 0.3s ease;
}

.jarniko-detail-page .sidebar-link:hover {
    color: #3b82f6 !important;
}

.jarniko-detail-page .btn-floating {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.jarniko-detail-page .btn-floating:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#header-jarniko {
    z-index: 1050;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

#header-jarniko .navbar {
    background-color: #ffffff !important;
    padding: 0.75rem 0;
}

#header-jarniko .logo-img {
    max-width: 45px;
    height: auto;
}

.jarniko-footer {
    padding: 80px 0 40px;
    background-color: #FFFFFF;
}

.jarniko-footer .footer-logo {
    max-width: 50px;
}

.jarniko-footer .footer-nav-link {
    color: #64748B;
    text-decoration: none;
    transition: 0.3s ease;
}

.jarniko-footer .footer-nav-link:hover {
    color: #3B82F6;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .jarniko-detail-page .detail-hero {
        min-height: 300px;
    }

    .jarniko-detail-page .rich-text {
        font-size: 1rem;
    }
}
