:root {
    --bg-primary: #fefefe;
    --bg-secondary: #f8fafc;
    --bg-accent: #f1f5f9;
    --primary-forest: #dc2d26;
    --primary-forest-dark: #b91c1c;
    --accent-mountain: #dc2d26;
    --accent-sunset: #ea580c;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-light: rgba(220, 45, 38, .1);
    --border-medium: rgba(220, 45, 38, .2);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, .05), 0 1px 2px 0 rgba(0, 0, 0, .03);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, .07), 0 2px 4px -1px rgba(0, 0, 0, .05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .05);
    --shadow-glow: 0 0 20px rgba(220, 45, 38, .2);
    --radius-sm: .75rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
    --transition-fast: .25s ease;
    --transition-normal: .35s ease;
    --transition-slow: .5s ease
}
img.h-12.w-auto.mb-4.logo-footer {
    filter: grayscale(1) brightness(0) invert(1);
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Inter, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.1
}

.orange {
    color: #ff6900
}
.hero-stats em {
    color: #fff !important;
    font-weight: bold;
}
#pdfDownloadModal .modal-box {
    padding: 41px 22px;
}
.section-title {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.1
}

.section-subtitle {
    font-weight: 400;
    opacity: .8
}

a.futuristic-button {
    display: flex;
    align-items: center;
    max-width: 280px
}

.trek-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: var(--transition-normal);
    position: relative;
    box-shadow: var(--shadow-lg)
}

.trek-card:hover {
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: var(--primary-forest)
}

.trek-card a:hover {
    text-decoration: none
}

.trek-card-image {
    position: relative;
    overflow: hidden
}

.viewmore-button {
    background: var(--primary-forest);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-family: Inter, sans-serif;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md)
}

.trek-card-image img {
    transition: var(--transition-slow)
}

.trek-card:hover .trek-card-image img {
    transform: scale(1.1)
}

.btn-primary {
    background: var(--primary-forest);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-family: Inter, sans-serif;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md)
}

.btn-primary:hover {
    background: var(--primary-forest-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow)
}

.btn-secondary {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 2px solid var(--border-medium);
    padding: 1rem 2.5rem;
    font-family: Inter, sans-serif;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm)
}

.btn-secondary:hover {
    background: var(--accent-mountain);
    border-color: var(--primary-forest);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md)
}

.futuristic-button {
    background: var(--primary-forest);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-family: Inter, sans-serif;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md)
}

.futuristic-button:hover {
    background: var(--primary-forest-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow)
}

.futuristic-input {
    background: var(--bg-primary);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-family: Inter, sans-serif;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm)
}

.futuristic-input:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 4px #2dd4bf1a, var(--shadow-md);
    outline: none
}

.futuristic-input::placeholder {
    color: var(--text-muted)
}

.badge-easy {
    background: #dc2d261a;
    color: var(--primary-forest);
    border: 1px solid rgba(220, 45, 38, .3);
    box-shadow: 0 0 10px #dc2d2633
}

.badge-medium {
    background: #2563eb1a;
    color: var(--accent-mountain);
    border: 1px solid rgba(37, 99, 235, .3);
    box-shadow: 0 0 10px #2563eb33
}

.badge-hard {
    background: #ea580c1a;
    color: var(--accent-sunset);
    border: 1px solid rgba(234, 88, 12, .3);
    box-shadow: 0 0 10px #ea580c33
}

@keyframes fade-in {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes slide-in-left {
    0% {
        opacity: 0;
        transform: translate(-30px)
    }

    to {
        opacity: 1;
        transform: translate(0)
    }
}

@keyframes slide-in-right {
    0% {
        opacity: 0;
        transform: translate(30px)
    }

    to {
        opacity: 1;
        transform: translate(0)
    }
}

@keyframes scale-in {
    0% {
        opacity: 0;
        transform: scale(.9)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.animate-fade-in {
    animation: fade-in .6s ease-out forwards
}

.animate-slide-up {
    animation: slide-up .6s ease-out forwards
}

.animate-slide-in-left {
    animation: slide-in-left .6s ease-out forwards
}

.animate-slide-in-right {
    animation: slide-in-right .6s ease-out forwards
}

.animate-scale-in {
    animation: scale-in .6s ease-out forwards
}

.price-updating {
    animation: price-pulse .4s ease-out
}

.label-updating {
    animation: label-fade .3s ease-out
}

@keyframes price-pulse {
    0% {
        transform: scale(1);
        color: var(--primary-forest)
    }

    50% {
        transform: scale(1.05);
        color: var(--accent-sunset)
    }

    to {
        transform: scale(1);
        color: var(--primary-forest)
    }
}

@keyframes label-fade {
    0% {
        opacity: .7;
        transform: translateY(2px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

#booking-route-label {
    transition: all .3s ease;
    white-space: nowrap
}

#route-label-container.addon-selected {
    background: linear-gradient(135deg, #dc26261a, #dc26260d);
    border-color: #dc26264d;
    transform: scale(1.02)
}

#route-label-container.addon-selected svg {
    color: #dc2626
}

#route-label-container.addon-selected #booking-route-label {
    color: #1f2937;
    font-weight: 700
}

.hover-lift {
    transition: transform .3s ease, box-shadow .3s ease
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl)
}

.neon-emerald {
    box-shadow: 0 0 20px #dc2d264d
}

.neon-cyan {
    box-shadow: 0 0 20px #06b6d44d
}

.neon-purple {
    box-shadow: 0 0 20px #9333ea4d
}

.glass-dark {
    background: #0000004d;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1)
}

:root {
    --forest: #dc2d26;
    --mountain: #2563eb;
    --sunset: #ea580c;
    --cyan: #06b6d4
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: var(--radius-md)
}

::-webkit-scrollbar-thumb {
    background: var(--primary-forest);
    border-radius: var(--radius-full)
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-mountain)
}

::selection {
    background: #dc2d2633;
    color: var(--text-primary)
}

.slider-container {
    position: relative
}

.slider-wrapper {
    display: flex
}

.slider-slide {
    width: 100%
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none
}

.scrollbar-hide::-webkit-scrollbar {
    display: none
}

@media(max-width:768px) {

    .btn-primary,
    .btn-secondary {
        padding: .75rem 1.5rem;
        font-size: .875rem
    }

    .slider-container {
        max-width: 100%
    }
}

.rich-text-editor-wrapper {
    border-radius: .5rem;
    overflow: hidden
}

.rich-text-editor-wrapper .tox-tinymce {
    border-radius: .5rem;
    border: 1px solid #e2e8f0 !important
}

.rich-text-editor-wrapper .tox .tox-toolbar-overlord,
.rich-text-editor-wrapper .tox .tox-toolbar__primary {
    background: linear-gradient(#f8fafc, #f1f5f9) !important
}

.rich-text-editor-wrapper .tox .tox-edit-area__iframe {
    background-color: #fff
}

.tinymce-editor {
    width: 100%;
    min-height: 400px;
    padding: .75rem;
    border: 1px solid #e2e8f0;
    border-radius: .5rem;
    font-family: inherit;
    font-size: .875rem;
    line-height: 1.5;
    color: #334155;
    background-color: #fff;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.tinymce-editor:focus {
    outline: none;
    border-color: #dc2d26;
    box-shadow: 0 0 0 3px #dc2d261a
}

.trek-details-content {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

.trek-details-content>*+* {
    margin-top: 1em
}

.trek-details-content h1,
.trek-details-content h2,
.trek-details-content h3,
.trek-details-content h4,
.trek-details-content h5,
.trek-details-content h6 {
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: .5em;
    line-height: 1.3
}

.trek-details-content h1:first-child,
.trek-details-content h2:first-child,
.trek-details-content h3:first-child {
    margin-top: 0
}

.trek-details-content p {
    margin-bottom: .75em
}

.trek-details-content ul,
.trek-details-content ol {
    margin-left: 1.5em;
    margin-bottom: .75em
}

.trek-details-content li {
    margin-bottom: .5em
}

.trek-details-content img {
    max-width: 100%;
    height: auto;
    margin: 1em 0
}

.trek-details-content table {
    border-collapse: collapse;
    margin: 1em 0;
    width: 100%
}

.trek-details-content th,
.trek-details-content td {
    border: 1px solid #ccc;
    padding: .5em
}

.trek-details-content blockquote {
    margin: 1em 0;
    padding-left: 1em;
    border-left: 3px solid #ccc
}

.trek-details-content *[style*=margin-top],
.trek-details-content *[style*=margin-bottom],
.trek-details-content *[style*=padding-top],
.trek-details-content *[style*=padding-bottom] {
    margin-top: inherit;
    margin-bottom: inherit
}

.trek-card-image:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, .4), transparent);
    pointer-events: none
}

#featured-treks-container {
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none
}

#featured-treks-container::-webkit-scrollbar {
    display: none
}

@media(max-width:768px) {
    .trek-card {
        margin-bottom: 1rem
    }

    .grid .trek-card {
        border-radius: 1rem
    }
}
