:root {
    --brand-green: #0a3d1b;
    --brand-green-hover: #155e34;
    --navbar-bg: #ffffff;
    --dark-footer-bg: #1a1a1a;
    --text-dark: #2c2c2c;
    --text-light: #f8f9fa;
    --border-light: #e9e9e9;
    
    --font-main: 'Nunito', sans-serif;
    --font-heading: 'Cinzel', serif;
    --font-serif: 'EB Garamond', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
a { text-decoration: none !important; color: inherit; }
body { font-family: var(--font-main); background-color: #fff; color: var(--text-dark); }
ul { list-style-type: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; margin-top: 100px;}

.btn { display: inline-block; padding: 1rem 2.5rem; border-radius: 50px; font-family: var(--font-main); font-weight: 800; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; border: 2px solid transparent; transition: all 0.4s ease; }
.btn-primary { background-color: var(--brand-green); color: #fff; border-color: var(--brand-green); }
.btn-primary:hover { background-color: var(--brand-green-hover); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.btn-secondary { background-color: transparent; color: #fff; border-color: #fff; }
.btn-secondary:hover { background-color: #fff; color: var(--brand-green); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

.section-title { text-align: center; margin-bottom: 4rem; }
.section-title h2 { font-family: var(--font-heading); font-size: 2.8rem; color: var(--brand-green); margin-bottom: 0.5rem; }
.section-title p { font-family: var(--font-serif); font-size: 1.2rem; color: #6c757d; max-width: 600px; margin: 0 auto; }


.site-header { background-color: var(--navbar-bg); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); border-bottom: 1px solid var(--border-light); position: sticky; top: 0; z-index: 101; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 0 2rem; max-width: 1600px; margin: 0 auto; height: 80px; }
.nav-logo img { height: 60px; }
.nav-menu { display: flex; }
.nav-link { display: flex; align-items: center; color: var(--brand-green); font-size: 1.1rem; font-weight: 800; padding: 1rem; }
.nav-link span { position: relative; padding-bottom: 5px; transition: color 0.3s ease; }
.nav-link:hover span, .nav-link.active-page span { color: var(--brand-green-hover); }
.menu-icon { height: 1.1em; width: auto; margin-right: 0.5em; opacity: 0; transform: translateX(-15px); transition: opacity 0.3s ease-out, transform 0.4s ease-out; }
.nav-link:hover .menu-icon, .nav-link.active-page .menu-icon { opacity: 1; transform: translateX(0); }
.nav-link span::after { content: ''; position: absolute; width: 0%; height: 2px; bottom: 0; left: 0; background-color: var(--brand-green-hover); transition: width 0.3s ease-in-out; }
.nav-link:hover span::after, .nav-link.active-page span::after { width: 100%; }
 .mobile-nav-panel, .hamburger { display: none; }


.hero-slider { position: relative; height: 80vh; width: 100%; overflow: hidden; display: flex; align-items: center; justify-content: center; background-color: #333; }
.slides-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease-in-out; }
.slide.active { opacity: 1; }
.slide::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.4); }
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; padding: 2rem; }
.hero-slogan { font-family: var(--font-heading); font-size: 4rem; font-weight: 700; text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1.5rem; justify-content: center; }
.slider-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 1rem; }
.dot { width: 12px; height: 12px; border-radius: 50%; background-color: rgba(255, 255, 255, 0.5); cursor: pointer; transition: background-color 0.3s ease; }
.dot.active, .dot:hover { background-color: #fff; }

.packages-grid, .tour-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 2.5rem; 
    justify-content: start;
}

.single-item-grid {
    display: grid;
    max-width: 900px;
    margin: 0 auto;
}

.package-card, .tour-card { 
    background-color: #fff; 
    border-radius: 10px; 
    box-shadow: 0 5px 25px rgba(0,0,0,0.07); 
    overflow: hidden; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    display: flex;
    flex-direction: column;
}

.package-card:hover, .tour-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
}

.card-link-wrapper, .tour-card-content .btn {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-image, .tour-card-image { 
    height: 250px;
    overflow: hidden;
    position: relative;
}

.card-image img, .tour-card-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.package-card:hover img, .tour-card:hover img { 
    transform: scale(1.08); 
}

.card-content, .tour-card-content { 
    padding: 1.5rem; 
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-tag {
    align-self: flex-start;
    margin-bottom: 1rem;
    background-color: rgba(10, 61, 27, 0.1); 
    color: var(--brand-green); 
    padding: 0.3rem 0.8rem; 
    border-radius: 50px; 
    font-size: 0.8rem; 
    font-weight: 700;
}

.tour-price-tag, .tour-duration-tag {
    position: absolute;
    top: 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
}
.tour-price-tag {
    right: 1rem;
    background-color: var(--brand-green);
}
.tour-duration-tag {
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.tour-duration-tag i { font-size: 0.8rem; }


.card-title, .tour-card-content h3 { 
    font-family: var(--font-heading); 
    font-size: 1.5rem; 
    color: #333; 
    margin-bottom: 0.5rem; 
}

.card-excerpt, .tour-card-content p { 
    font-family: var(--font-serif); 
    font-size: 1rem; 
    line-height: 1.6; 
    color: #555; 
    flex-grow: 1;
    margin-bottom: 1rem;
}

.large-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
}
.large-card .tour-card-image {
    height: 100%;
    min-height: 350px;
    border-radius: 10px 0 0 10px;
}
.large-card .tour-card-content {
    align-self: stretch;
}

.large-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
}
.large-card .tour-card-image {
    height: 100%;
    min-height: 350px;
    border-radius: 10px 0 0 10px;
    border-bottom: none;
}
.large-card .tour-card-content {
    align-self: stretch;
}
@media (max-width: 1024px) {
    .package-card {
        width: calc(50% - 1.25rem);
    }
}
@media (max-width: 700px) {
    .package-card {
        width: 100%;
        min-width: unset;
    }
}

.large-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
}
.large-card .tour-card-image {
    height: 100%;
    min-height: 350px;
    border-radius: 10px 0 0 10px;
    border-bottom: none;
}
.large-card .tour-card-content {
    align-self: stretch;
}

@media (max-width: 1024px) {
    .packages-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .packages-grid {
        column-count: 1;
    }
}

.view-all-tours-btn-container {
    text-align: center;
    margin-top: 3rem;
}

.agency-promo { 
    margin-top: 100px;
    padding: 6rem 0; 
    background: var(--brand-green); 
    color: var(--text-light); 
    text-align: center; 
}

.promo-content { 
    max-width: 800px; 
    margin: 0 auto; 
}

.promo-tagline { 
    font-weight: 700; 
    letter-spacing: 1px; 
    opacity: 0.8; 
    margin-bottom: 1rem; 
    display: block; 
}

.promo-title { 
    font-family: var(--font-heading); 
    font-size: 2.8rem; 
    margin-bottom: 1.5rem; 
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2); 
}

.promo-text { 
    font-family: var(--font-serif); 
    font-size: 1.2rem; 
    line-height: 1.7; 
    opacity: 0.9; 
    margin-bottom: 2rem; 
}

.agency-promo .btn-primary { 
    background: #fff; 
    color: var(--brand-green); 
    border-color: #fff; 
}

.agency-promo .btn-primary:hover { 
    background: var(--border-light); 
}

.video-section { 
    padding: 6rem 0; 
    background-color: #fff; 
}

.video-wrapper { 
    position: relative; 
    max-width: 900px; 
    margin: 0 auto; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.15); 
    border-radius: 15px; 
    overflow:hidden; 
}

.promo-video { 
    width: 100%; 
    display: block; 
}

.video-overlay-text { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    color: #fff; 
    text-align: center; 
}

.video-overlay-text h2 { 
    font-family: var(--font-heading); 
    font-size: 3rem; 
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8); 
}

.testimonial-slider-wrapper { 
    position: relative; 
    padding: 0 20px;
    margin: 0 auto; 
    max-width: 1200px; 
}

.testimonial-slider-container { 
    overflow: hidden; 
}

.testimonials-grid { 
    display: flex; 
    gap: 2.5rem; 
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card { 
    flex: 0 0 calc(33.333% - 1.7rem); 
    min-width: 320px;
    background: #fff; 
    padding: 2rem; 
    border-radius: 10px; 
    border-top: none;
    border-bottom: 4px solid var(--brand-green);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.star-rating { 
    color: #ffc107; 
    font-size: 1.2rem; 
    margin-bottom: 1rem; 
}

.comment-text { 
    font-size: 1.1rem; 
    line-height: 1.7;
    font-style: italic; 
    font-family: var(--font-serif); 
    margin-bottom: 1.5rem; 
    color: #333;
    flex-grow: 1;
}

.comment-author { 
    font-weight: 700; 
    text-align: right; 
    color: #555;
}
.author-name {
    font-weight: 800;
}
.author-country { 
    opacity: 0.8; 
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--brand-green);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--brand-green);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow:disabled {
    opacity: 0;
    transform: translateY(-50%) scale(0.8);
    pointer-events: none;
}

.prev-arrow { left: 0; }
.next-arrow { right: 0; }

@media(max-width: 1300px) { 
    .testimonial-slider-wrapper { padding: 0; }
}
@media(max-width: 900px) { 
    .testimonial-card { flex-basis: calc(50% - 1.25rem); } 
}
@media(max-width: 600px) { 
    .testimonial-card { flex-basis: 100%; min-width: 280px; } 
    .slider-arrow { display: none; }
    .testimonial-slider-container { overflow-x: auto; scroll-snap-type: x mandatory; }
    .testimonial-card { scroll-snap-align: center; }
}
.cta-section { 
    padding: 5rem 0; 
    background-image: linear-gradient(to right, var(--brand-green), var(--brand-green-hover)); 
    color: var(--text-light); 
    text-align: center; 
    margin-top: 100px;
}

.cta-section h2 { 
    font-family: var(--font-heading); 
    font-size: 3rem; 
    margin-bottom: 1rem; 
}

.cta-section p { 
    max-width: 600px; 
    margin: 0 auto 2rem auto; 
    font-size: 1.2rem; 
    opacity: 0.9; 
}

.site-footer {
    background-color: #121212;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%231a1a1a" fill-opacity="0.8"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    color: #a9b3bb;
    padding: 4rem 0 0;
    font-family: var(--font-serif);
    font-size: 1rem;
    line-height: 1.7;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col .footer-logo {
    max-width: 180px;
    margin-bottom: 1rem;
}

.footer-col h4.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.7rem;
}

.footer-col h4.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--brand-green);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-links li a {
    color: #a9b3bb;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--brand-green);
    font-size: 1rem;
    width: 20px;
    margin-right: 1rem;
    margin-top: 5px;
    text-align: center;
}

.footer-contact a {
    color: #a9b3bb;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #fff;
}

.social-icons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #a9b3bb;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--brand-green);
    color: #fff;
    transform: translateY(-5px);
}

.social-icon-img {
    width: 22px;
    height: auto;
    filter: brightness(0) invert(1);
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.tursab-text {
    font-weight: bold;
    color: rgba(255, 255, 255, 0.7);
}

.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background-color: var(--brand-green);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--brand-green-hover);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }
}

@media(max-width: 900px) {
    .nav-menu {
        display: none;
    }
    .hamburger {
        display: block;
        z-index: 1001;
        cursor: pointer;
        padding: 10px;
    }
    .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: var(--brand-green);
        transition: all 0.3s ease-in-out;
    }

    .mobile-nav-panel {
        display: flex;
        position: fixed;
        top: 0;
        left: 0; 
        width: 100%;
        height: 100vh;
        background-color: var(--navbar-bg);
        z-index: 1000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        opacity: 0;
        visibility: hidden;
        transform: scale(0.95);
        transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
    }
    
    body.menu-open .mobile-nav-panel {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }
    
    body.menu-open .hamburger .bar {
        background-color: var(--brand-green);
    }

    body.menu-open .hamburger .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    body.menu-open .hamburger .bar:nth-child(2) { opacity: 0; }
    body.menu-open .hamburger .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    body.menu-open {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    .mobile-nav-panel .nav-link { font-size: 1.5rem; }
    .mobile-nav-panel .menu-icon { opacity: 1; transform: none; }
    
    .hero-slogan, .section-title h2, .promo-title, .video-overlay-text h2, .cta-section h2 { font-size: clamp(2rem, 8vw, 2.8rem); }
    .hero-buttons { flex-direction: column; gap: 1rem; }
}

.page-header {
    padding: 5rem 0;
    background-color: var(--brand-green);
    background-image: linear-gradient(rgba(10, 61, 27, 0.8), rgba(10, 61, 27, 0.8)), url('assets/images/slider/slider2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-family: var(--font-serif);
}

.tour-category-section {
    padding: 6rem 0;
}

.tour-category-section.alt-bg {
    background-color: #f8f9fa;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--brand-green);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1rem;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--brand-green);
}

.tour-grid {
    column-count: 3;
    column-gap: 2rem;
}

.single-item-grid {
    column-count: 1;
    max-width: 900px;
    margin: 0 auto;
}

.tour-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
    break-inside: avoid;
    display: inline-block;
    width: 100%;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.tour-card-image {
    position: relative;
}

.tour-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

.tour-card-content {
    padding: 1.5rem;
}

.tour-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.tour-card-content p {
    font-family: var(--font-serif);
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.large-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
}

.large-card .tour-card-image img {
    height: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
}

@media (max-width: 1024px) {
    .tour-grid {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .large-card {
        grid-template-columns: 1fr;
    }
    .large-card .tour-card-image img {
        height: 250px;
        border-radius: 10px 10px 0 0;
    }
}

@media (max-width: 600px) {
    .tour-grid {
        column-count: 1;
    }
}
.tour-card-image {
    position: relative;
}

.tour-price-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--brand-green);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.modal {
    display: none; 
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    position: relative;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    animation: zoomIn 0.4s ease-out;
    display: flex;
    flex-direction: column;
}

@keyframes zoomIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-button {
    color: #aaa;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}
.close-button:hover,
.close-button:focus {
    color: #000;
}

.modal-body-container {
    display: block;
    overflow-y: auto;
    padding: 0.5rem;
    flex-grow: 1;
}

.modal-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.modal-tour-info {
    overflow-y: initial;
    padding-right: 0;
}

.gallery-main img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}
.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 0.5rem;
}
.gallery-thumbnails img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s ease;
}
.gallery-thumbnails img:hover,
.gallery-thumbnails img.active {
    border-color: var(--brand-green);
}

#modal-tour-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--brand-green);
    margin-bottom: 1rem;
    margin-top: 0;
}

#modal-tour-description {
    font-family: var(--font-serif);
    line-height: 1.7;
    font-size: 1.1rem;
}

.modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

#modal-tour-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--brand-green);
    margin-bottom: 1rem;
}

#modal-tour-description {
    font-family: var(--font-serif);
    line-height: 1.7;
    font-size: 1.1rem;
}

.tour-builder-section {
    padding: 5rem 0;
}

.tour-builder-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.activity-selection .intro-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.activity-category {
    margin-bottom: 2rem;
}

.activity-category h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--brand-green);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-light);
}

.activity-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.activity-item:hover {
    border-color: var(--brand-green-hover);
    background-color: #f8f9fa;
}

.activity-item input[type="checkbox"] {
    display: none;
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--brand-green);
    border-radius: 4px;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.custom-checkbox::after {
    content: '\2713';
    font-size: 14px;
    color: #fff;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.activity-item input:checked + .custom-checkbox {
    background-color: var(--brand-green);
}

.activity-item input:checked + .custom-checkbox::after {
    opacity: 1;
    transform: scale(1);
}

.activity-name {
    font-weight: 700;
    flex-grow: 1;
}

.activity-price {
    font-weight: 700;
    color: var(--brand-green);
}

.your-tale-summary {
    position: sticky;
    top: 120px;
}

.summary-sticky-content {
    background-color: #f8f9fa;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 2rem;
}

.your-tale-summary h4 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--brand-green);
    margin-bottom: 1rem;
    text-align: center;
}

#selected-activities-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

#selected-activities-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-light);
}
#selected-activities-list li.placeholder {
    color: #888;
    justify-content: center;
    font-style: italic;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

#inquire-btn.disabled {
    pointer-events: none;
    background-color: #ccc;
    border-color: #ccc;
}

@media (max-width: 900px) {
    .tour-builder-container {
        grid-template-columns: 1fr;
    }
    .your-tale-summary {
        position: static;
    }
}

.tale-content-section {
    padding: 5rem 0;
    background-color: #fff;
}

.tale-container {
    max-width: 800px;
    margin: 0 auto;
}

.tale-container p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 2rem;
}

.tale-intro {
    font-size: 1.3rem !important;
    text-align: center;
    color: #000 !important;
    margin-bottom: 4rem !important;
    padding: 0 1rem;
}

.with-drop-cap::first-letter {
    font-family: var(--font-heading);
    font-size: 6rem; 
    float: left;
    margin-right: 0.2rem;
    line-height: 0.85;
    color: var(--brand-green);
    margin-top: 0.4rem;
    padding-right: 0.5rem;
}

.tale-quote {
    position: relative;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    text-align: center;
    border: none;
    padding: 2rem 4rem;
    margin: 3rem 0;
    color: var(--brand-green);
    background-color: transparent;
}

.tale-quote::before, .tale-quote::after {
    font-family: var(--font-serif);
    font-size: 8rem;
    color: var(--border-light);
    position: absolute;
    line-height: 1;
}

.tale-quote::before {
    content: '“';
    top: 0rem;
    left: 1rem;
}

.tale-quote::after {
    content: '”';
    bottom: -2.5rem;
    right: 1rem;
}


.tale-separator {
    height: 1px;
    width: 200px;
    background-color: var(--border-light);
    margin: 4rem auto;
}

.goblin-definition {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.definition-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--brand-green);
    margin-bottom: 1rem;
}

.why-us-section {
    padding: 6rem 0;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.why-us-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.why-us-item:hover {
    border-color: var(--border-light);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.why-us-icon {
    font-size: 2.5rem;
    color: var(--brand-green);
    background-color: rgba(10, 61, 27, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    transition: all 0.4s ease;
}

.why-us-item:hover .why-us-icon {
    background-color: var(--brand-green);
    color: #fff;
    transform: scale(1.1);
}

.why-us-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.why-us-item p {
    font-family: var(--font-serif);
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

@media(max-width: 768px) {
    .goblin-definition {
        grid-template-columns: 1fr;
    }
    .with-drop-cap::first-letter {
        font-size: 5rem;
    }
}

.contact-page-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.contact-page-container {
    max-width: 900px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    text-align: center;
}

.info-block {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.info-block i {
    font-size: 2rem;
    color: var(--brand-green);
    margin-bottom: 1rem;
}

.info-block h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.info-block p {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: #555;
}

.form-container {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.form-container h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--brand-green);
    margin-bottom: 2rem;
}

.form-row {
    display: flex;
    gap: 2rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 5px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-green-hover);
    box-shadow: 0 0 0 4px rgba(10, 61, 27, 0.1);
}

.form-submit-group {
    text-align: center;
}

#form-status {
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 700;
}

#form-status .success {
    color: var(--brand-green);
    background-color: rgba(10, 61, 27, 0.1);
    padding: 1rem;
    border-radius: 5px;
}

#form-status .error {
    color: #D8000C;
    background-color: #FFBABA;
    padding: 1rem;
    border-radius: 5px;
}

@media(max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.survey-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.survey-container {
    max-width: 800px;
    background-color: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

#survey-form fieldset {
    border: none;
    padding: 0;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 2.5rem;
}

#survey-form fieldset:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

#survey-form legend {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--brand-green);
    margin-bottom: 1.5rem;
    width: 100%;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    font-size: 2.5rem;
}

.star-rating input {
    display: none;
}

.star-rating label {
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star-rating input:checked ~ label,
.star-rating:not(:checked) > label:hover,
.star-rating:not(:checked) > label:hover ~ label {
    color: #ffc107;
}

.form-group-checkbox {
    display: flex;
    align-items: center;
}

.form-group-checkbox input {
    width: 20px;
    height: 20px;
    margin-right: 1rem;
}

.form-group-checkbox label {
    font-family: var(--font-serif);
    font-size: 1rem;
}

#modal-tour-price-duration {
    margin-top: 1.5rem;
    font-weight: bold;
}

@media(max-width: 900px) {
    .modal-body-container {
        max-height: 85vh;
    }
    .modal-gallery {
        order: 1;
    }
    .modal-tour-info {
        order: 2;
    }
    .gallery-main img {
        max-height: 300px;
    }
}

.nav-link {
    position: relative;
}

.nav-link .menu-icon {
    height: 1.1em;
    width: auto;
    margin-right: 0.5em;
    opacity: 0;
    transform: translateX(-15px);
    transition: opacity 0.3s ease-out, transform 0.4s ease-out;
}

.nav-link:hover .menu-icon,
.nav-link.active-page .menu-icon {
    opacity: 1;
    transform: translateX(0);
}


.language-switcher { display: flex; align-items: center; gap: 0.5rem; border: 1px solid #e0e0e0; border-radius: 20px; padding: 3px; background-color: #f8f9fa; flex-shrink: 0; }
.language-switcher a { padding: 0.3rem 0.9rem; color: #888; font-weight: bold; border-radius: 20px; transition: all 0.3s ease; font-size: 0.9rem; }
.language-switcher a.active { background-color: var(--brand-green); color: #fff; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.language-switcher a:not(.active):hover { color: var(--brand-green); }
.desktop-nav-right {
    display: flex !important;
    align-items: center !important;
    gap: 1.5rem !important;
    flex-shrink: 0 !important;
}

.nav-link .menu-icon {
    opacity: 0 !important;
    transform: translateX(-15px) !important;
    transition: opacity 0.3s ease-out, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
.nav-link:hover .menu-icon,
.nav-link.active-page .menu-icon {
    opacity: 1 !important;
    transform: translateX(0) !important;
}
.nav-link span::after {
    content: '' !important;
    position: absolute !important;
    width: 0% !important;
    height: 2px !important;
    bottom: 0 !important;
    left: 0 !important;
    background-color: var(--brand-green-hover) !important;
    transition: width 0.3s ease-in-out !important;
}
.nav-link:hover span::after,
.nav-link.active-page span::after {
    width: 100% !important;
}

.slider-arrow {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    line-height: 1 !important; 
}

.desktop-nav-right {
    display: flex;
    align-items: center;
}

.nav-link {
    position: relative;
}
.menu-icon {
    height: 1.1em;
    width: auto;
    margin-right: 0.5em;
    opacity: 0;
    transform: translateX(-15px);
    transition: opacity 0.3s ease-out, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-link:hover .menu-icon,
.nav-link.active-page .menu-icon {
    opacity: 1;
    transform: translateX(0);
}
.nav-link span::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--brand-green-hover);
    transition: width 0.3s ease-in-out;
}
.nav-link:hover span::after,
.nav-link.active-page span::after {
    width: 100%;
}

.header-lang-select {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 3px;
    background-color: #f8f9fa;
    margin-left: 1.5rem;
    flex-shrink: 0;
}
.header-lang-select a {
    padding: 0.3rem 0.9rem;
    color: #888;
    font-weight: bold;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}
.header-lang-select a.active {
    background-color: var(--brand-green);
    color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.header-lang-select a:not(.active):hover {
    color: var(--brand-green);
}

.mobile-lang-switcher {
    display: none;
}
@media(max-width: 900px) {
    .desktop-lang-switcher {
        display: none;
    }
    .mobile-lang-switcher {
        display: flex;
        justify-content: center;
    }
    .mobile-lang-container { 
        padding-top: 2rem; 
        margin-top: 1rem; 
        border-top: 1px solid var(--border-light); 
        width: 80%; 
        text-align: center; 
    }
    .mobile-lang-switcher a { 
        padding: 0.5rem 1.5rem;
    }
}

body.menu-open { 
    overflow: hidden; 
}

@media (max-width: 900px) {
    .desktop-nav-right {
        display: none !important;
    }

    .hamburger {
        display: block;
    }
}
.image-header {
    height: 40vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
.image-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 61, 27, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-header h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
}

.image-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    font-family: var(--font-serif);
    margin-top: 0.5rem;
}

@media (max-width: 900px) {
    .desktop-lang-switcher {
        display: none;
    }
}

@media (max-width: 900px) {
 .mobile-lang-container .header-lang-select {
    display: inline-flex;
    margin: 0;
 }
}

#modal-tour-note-container { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #e9e9e9; }
#modal-note-trigger { display: inline-block; font-family: var(--font-heading); font-size: 1.2rem; color: var(--brand-green); cursor: pointer; transition: color 0.3s ease; }
#modal-note-trigger:hover { color: var(--brand-green-hover); }
#modal-note-trigger i { margin-left: 0.5rem; font-size: 1rem; }
#modal-note-content { margin-top: 1rem; padding: 1.5rem; background-color: #f8f9fa; border-radius: 8px; border-left: 4px solid var(--brand-green); font-size: 0.95rem; line-height: 1.6; }
#modal-note-content p { margin-bottom: 0.8rem; }
#modal-note-content strong { display: block; margin-top: 1rem; font-family: var(--font-main); font-weight: 700; }