/* Critical Above-the-Fold Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2e5339;
    --secondary: #7a5c3c;
    --neutral: #e5e2dd;
    --text: #2b2b2b;
    --cta: #5e8a5a;
    --white: #ffffff;
    --light-gray: #f8f8f8;
    --border: #ddd;
    --success: #28a745;
    --error: #dc3545;
    --warning: #ffc107;
}

/* Font styles will be loaded via Google Fonts link in HTML */

html,
body {
    height: 100%;
}

body {
    font-family: "Open Sans", sans-serif;
    color: var(--text);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

/* Navigation */
.navbar {
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
    will-change: background-color;
}

.navbar.scrolled {
    background: rgba(46, 83, 57, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 80px;
    width: auto;
    min-width: 200px;
    max-width: 250px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-menu a:hover,
.nav-menu a:focus {
    background-color: rgba(255, 255, 255, 0.25);
    color: var(--text);
}

.nav-menu a.nav-active {
    background: var(--cta);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
}

.nav-menu a.nav-active:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.logo.nav-active {
    color: var(--neutral);
    background-color: rgba(255, 255, 255, 0.15);
    font-weight: 600;
}

.mobile-menu {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
}

.mobile-menu:hover,
.mobile-menu:focus {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)),
        url("../images/main_picture.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    background: rgba(0, 0, 0, 0.4);
    padding: 3rem 2rem;
    border-radius: 15px;
    /*backdrop-filter: blur(1px);*/
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.02em;
}

.hero-content h2 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    opacity: 0.95;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content p:last-of-type {
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--cta);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn {
    will-change: transform, background-color;
}

.btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Page Sections */
.page {
    display: none;
}

.page.active {
    display: block;
}

.section {
    padding: 5rem 0;
}

.hero-small {
    padding: 8rem 0 5rem;
    background:
        linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)),
        url("../images/main_picture.webp");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
}
.hero-small .container {
    background: rgba(0, 0, 0, 0.4);
    padding: 3rem 2rem;
    border-radius: 10px;
}
.hero-small h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-small p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.intro {
    background: var(--light-gray);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-image {
    width: 100%;
    height: 400px;
    background-image: url("../images/from_to.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
}

.services-overview {
    padding: 5rem 0;
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card {
    will-change: transform;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--cta), var(--primary));
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* SVG Icons for Service Cards */
.route-planning .service-card-image {
    background: url("../images/the_route.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gear-management .service-card-image {
    background: url("../images/the_gear.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.timing-coordination .service-card-image {
    background: url("../images/your_time.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.pack-light .service-card-image {
    background: url("../images/light_pack.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.adventure-fully .service-card-image {
    background: url("../images/mountain_flowers.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gear-drops .service-card-image {
    background: url("../images/your_gear.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.porter-support .service-card-image {
    background: url("../images/porter.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.logistics-support .service-card-image {
    background: url("../images/on-off_road.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.overnight-support .service-card-image {
    background: url("../images/over_night.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.field-notes {
    background: var(--neutral);
}

.field-notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.field-note {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--cta);
}

.field-note h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    text-align: center;
}

.team-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Pricing Table */
.pricing-table {
    overflow-x: auto;
    margin-top: 2rem;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.pricing-table th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.pricing-table tr:hover {
    background: var(--light-gray);
}

/* Contact Form */
.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-family: "Open Sans", sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid var(--cta);
    outline-offset: 2px;
    border-color: var(--cta);
    box-shadow: 0 0 0 3px rgba(94, 138, 90, 0.1);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--secondary);
}

/* Form Status Messages */
#form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

#form-status.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

#form-status.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Contact Info */
.contact-info {
    background: var(--neutral);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover,
.contact-details a:focus {
    color: var(--cta);
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    background:
        linear-gradient(rgba(46, 83, 57, 0.9), rgba(46, 83, 57, 0.9)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23658B73" width="1200" height="400"/><polygon fill="%234A6B56" points="0,400 400,200 800,300 1200,100 1200,400"/></svg>');
    background-size: cover;
    text-align: center;
    color: var(--white);
    padding: 5rem 0;
}

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

/* Main Content Area */
.page,
main {
    flex: 1;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
}

.social-media {
    margin-bottom: 1rem;
}

.social-media a {
    display: inline-block;
    margin: 0 10px;
    color: white;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.social-media a:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

.social-media svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Blog Styles */
.blog-posts {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-preview {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.blog-post-preview .btn {
    display: block;
    text-align: center;
    margin: 2rem auto 0;
    max-width: 200px;
}

.blog-post-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.blog-post-preview h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Blog Filters */
.blog-filters {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-filters h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.filter-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Post Type Badge */
.post-type-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--white);
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.post-type-badge.hiking {
    background: linear-gradient(135deg, #228b22, #32cd32);
}

.post-type-badge.biking {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
}

/* Blog Post Filtering */
.blog-post-preview.hidden {
    display: none !important;
}

.blog-post-preview.visible {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Blog Share Section */
.blog-share {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid var(--cta);
}

.blog-share h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.share-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    min-width: 100px;
    justify-content: center;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.share-btn.copy-link {
    background: var(--cta);
    color: var(--white);
}

.share-btn.copy-link:hover {
    background: var(--primary);
}

.share-btn.facebook {
    background: #1877f2;
    color: var(--white);
}

.share-btn.facebook:hover {
    background: #165ed4;
}

.share-btn.twitter {
    background: #1da1f2;
    color: var(--white);
}

.share-btn.twitter:hover {
    background: #1a8cd8;
}

.blog-meta {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

/* Blog Highlights Section */
.blog-highlights {
    background: var(--light-gray);
}

.blog-highlights h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.blog-highlights p {
    color: var(--text);
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.blog-highlight-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.blog-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-highlight-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--white);
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.blog-highlight-badge.hiking {
    background: linear-gradient(135deg, #228b22, #32cd32);
}

.blog-highlight-badge.biking {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
}

.blog-highlight-card h3 {
    color: var(--primary);
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    padding-top: 20px;
    flex-shrink: 0;
}

.blog-highlight-card p {
    color: var(--text);
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.blog-highlight-card .btn {
    margin: 0 auto;
    display: inline-block;
    min-width: 120px;
    margin-bottom: 20px;
    margin-top: 1.5rem;
    flex-shrink: 0;
    align-self: center;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-3 {
    margin-top: 3rem;
}

/* Blog CTA Section */
.contact-cta {
    background: var(--white);
    border: 2px solid var(--cta);
    border-radius: 10px;
    padding: 2.5rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-cta h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.contact-cta p {
    color: var(--text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.btn-primary {
    background: var(--cta);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 180px;
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 180px;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.blog-post-full {
    max-width: 900px;
    margin: 0 auto;
}

.back-btn {
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: background 0.3s ease;
}

.back-btn:hover {
    background: var(--primary);
}

.blog-article {
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
}

.blog-article h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.blog-article h3 {
    color: var(--primary);
    margin: 2rem 0 1rem 0;
    border-left: 4px solid var(--accent);
    padding-left: 1rem;
}

.blog-article h4 {
    color: var(--secondary);
    margin: 1.5rem 0 0.5rem 0;
}

.blog-intro {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--accent);
}

.trip-overview {
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.day-summary {
    background: var(--white);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.day-summary:last-child {
    margin-bottom: 0;
}

.planning-section,
.day-detail {
    margin: 1.5rem 0;
}

.planning-section ul,
.blog-article ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.planning-section li,
.blog-article li {
    margin-bottom: 0.5rem;
}

.trust-statement {
    background: var(--accent);
    /*color: var(--white);*/
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.trust-statement h4 {
    /*color: var(--white);*/
    margin-bottom: 1rem;
}

.cta-section {
    background: var(--light);
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    margin: 2rem 0;
}

.cta-section h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Route Map Visualization */
.route-map {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: center;
}

.route-map h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.map-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.route-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.checkpoint {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 120px;
}

.checkpoint::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.start-point::before {
    background: var(--warning);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--warning);
}

.gear-point::before {
    background: var(--primary);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary);
}

.end-point::before {
    background: var(--secondary);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--secondary);
}

.checkpoint-label {
    font-size: 0.8rem;
    text-align: center;
    color: var(--text);
    font-weight: 500;
    line-height: 1.3;
}

.route-segment {
    height: 4px;
    min-width: 60px;
    border-radius: 2px;
    position: relative;
}

.route-segment::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.day1 {
    background: linear-gradient(90deg, var(--warning), var(--primary));
}

.day1::after {
    border-left-color: var(--primary);
}

.day2 {
    background: var(--primary);
}

.day2::after {
    border-left-color: var(--primary);
}

.day3 {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.day3::after {
    border-left-color: var(--secondary);
}

.map-legend {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 600px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-dot.start-point {
    background: var(--warning);
}

.legend-dot.gear-point {
    background: var(--primary);
}

.legend-dot.end-point {
    background: var(--secondary);
}

.legend-line {
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    border-radius: 2px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(46, 83, 57, 0.95);
        flex-direction: column;
        padding: 1rem;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content h2 {
        font-size: 1.1rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

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

    .intro-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .field-notes-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 3rem 0;
    }

    .hero-small {
        padding: 6rem 0 3rem;
    }

    .social-media a {
        margin: 0 8px;
    }

    .social-media svg {
        width: 20px;
        height: 20px;
    }

    .blog-article {
        padding: 2rem 1.5rem;
    }

    .blog-article h2 {
        font-size: 2rem;
    }

    .trip-overview,
    .blog-intro,
    .trust-statement,
    .cta-section {
        padding: 1.5rem;
    }

    .day-summary {
        padding: 1rem;
    }

    .route-line {
        flex-direction: column;
        gap: 0.5rem;
    }

    .route-segment {
        width: 4px;
        min-height: 40px;
        min-width: auto;
        transform: rotate(90deg);
    }

    .route-segment::after {
        top: auto;
        bottom: -5px;
        right: 50%;
        transform: translateX(50%) rotate(-90deg);
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 8px solid;
        border-bottom: none;
    }

    .day1::after {
        border-top-color: var(--primary);
    }

    .day2::after {
        border-top-color: var(--secondary);
    }

    .day3::after {
        border-top-color: var(--secondary);
    }

    .checkpoint-label {
        font-size: 0.7rem;
    }

    .map-legend {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .route-map {
        padding: 1.5rem;
    }

    /* Blog Share Responsive */
    .share-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .share-btn {
        width: 100%;
        min-width: auto;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .blog-share {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .blog-share h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    /* Blog CTA Responsive */
    .contact-cta {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }

    .contact-cta h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

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

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        min-width: auto;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Blog highlights responsive */
    .blog-highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .blog-highlight-card {
        padding: 1.5rem;
        min-height: 280px;
    }

    .blog-highlight-card h3 {
        font-size: 1.2rem;
        padding-top: 15px;
    }

    .blog-highlight-card p {
        font-size: 0.9rem;
    }

    .blog-highlight-card .btn {
        margin-bottom: 15px;
    }

    /* Blog preview buttons responsive */
    .blog-post-preview .btn {
        margin: 1.5rem auto 0;
        max-width: 180px;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Blog preview buttons extra small screens */
    .blog-post-preview .btn {
        margin: 1.25rem auto 0;
        max-width: 160px;
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }

    /* Blog highlights extra small screens */
    .blog-highlight-card {
        padding: 1.25rem;
        margin: 0 0.5rem;
        min-height: 260px;
    }

    .blog-highlight-card h3 {
        font-size: 1.1rem;
        padding-top: 10px;
    }

    .blog-highlight-card .btn {
        margin-bottom: 10px;
        font-size: 0.85rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero-content {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content h2 {
        font-size: 1rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-small h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Important Message Class */
.important {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 2px solid var(--warning);
    border-left: 5px solid var(--error);
    color: var(--text);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.important::before {
    /*content: "⚠️";*/
    font-size: 1.5rem;
    margin-right: 0.75rem;
    vertical-align: middle;
}

.important.success {
    background: linear-gradient(135deg, #d1edff, #a8dadc);
    border-color: var(--success);
    border-left-color: var(--cta);
}

.important.success::before {
    content: "✅";
}

.important.error {
    background: linear-gradient(135deg, #ffe6e6, #ffcccb);
    border-color: var(--error);
    border-left-color: #dc3545;
}

.important.error::before {
    content: "❌";
}

.important.info {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-color: #2196f3;
    border-left-color: #1976d2;
}

.important.info::before {
    content: "ℹ️";
}

.important p {
    margin: 0;
    line-height: 1.6;
}

.important a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
}

.important a:hover {
    color: var(--cta);
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
}

/* Loading Spinners */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
    margin-left: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn.loading {
    opacity: 0.8;
    cursor: not-allowed;
    pointer-events: none;
}

/* Form Validation Styles */
.field-error {
    color: var(--error);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Offline Message */
.offline-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    text-align: center;
}

/* Accessibility Improvements */
/* Skip link for keyboard navigation */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 9999;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Focus indicators */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--cta);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary: #000000;
        --secondary: #333333;
        --text: #000000;
        --border: #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}
.mb-2 {
    margin-bottom: 2rem;
}
.mb-3 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 1rem;
}
.mt-2 {
    margin-top: 2rem;
}
.mt-3 {
    margin-top: 3rem;
}

/* Loading and animation states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Use transform3d for hardware acceleration */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
    will-change: transform, opacity;
}

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 1rem;
    z-index: 9999;
    border-top: 3px solid var(--cta);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.cookie-accept {
    background: var(--cta);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.cookie-decline {
    background: transparent;
    border: 1px solid var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.cookie-settings {
    background: none;
    border: none;
    color: var(--white);
    text-decoration: underline;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 0.85rem;
}

.cookie-settings:hover {
    color: var(--neutral);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal-content {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.cookie-category:last-of-type {
    border-bottom: none;
}

.cookie-category label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.cookie-category input[type="checkbox"] {
    margin-top: 0.2rem;
}

.cookie-category p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--secondary);
    margin-left: 1.5rem;
}

.cookie-close {
    background: none;
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    color: var(--text);
}

.cookie-close:hover {
    background: var(--light-gray);
}

/* Mobile responsiveness for cookie notice */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookie-modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }
}
