:root {
    --primary-color: #0A2E36;
    --secondary-color: #278EA5;
    --accent-color: #FF9F1C;
    --light-color: #FFFFFF;
    --text-color: #333333;
    --bg-light-gray: #f8f9fa;
    --border-color: #dee2e6;
    --header-height: 80px;
}
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}
body.no-scroll {
    overflow: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
p {
    margin-bottom: 1rem;
}
a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover, a:focus {
    color: var(--accent-color);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul {
    list-style: none;
}
.vb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.vb-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
}
.vb-button-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}
.vb-button-primary:hover {
    background-color: #08242a;
    transform: translateY(-2px);
    color: var(--light-color);
}
.vb-button-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.vb-button-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
}
.vb-button-accent {
    background-color: var(--accent-color);
    color: var(--primary-color);
}
.vb-button-accent:hover {
    background-color: #ffb03b;
    transform: translateY(-2px);
    color: var(--primary-color);
}
.vb-main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: var(--header-height);
    display: flex;
    align-items: center;
}
.vb-main-header .vb-container {
    width: 100%;
}
.vb-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.vb-logo img {
    height: 40px;
    width: auto;
}
.vb-main-nav ul {
    display: flex;
    gap: 2rem;
}
.vb-main-nav a {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
}
.vb-main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}
.vb-main-nav a:hover::after,
.vb-main-nav a.nav-active::after {
    width: 100%;
}
.vb-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-open .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.nav-open .hamburger-line:nth-child(2) {
    opacity: 0;
}
.nav-open .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
main {
    padding-top: var(--header-height);
}
section {
    padding: 5rem 0;
}
.vb-section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.vb-section-title h2 {
    margin-bottom: 0.5rem;
}
.vb-section-title p {
    font-size: 1.125rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}
.vb-hero-section {
    position: relative;
    height: auto;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 0;
    overflow: hidden;
}
.vb-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.vb-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vb-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: -1;
}
.vb-hero-content {
    color: var(--light-color);
}
.vb-hero-content h1, .vb-hero-content h2 {
    color: var(--light-color);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}
.vb-hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.vb-interactive-grid-section {
    background-color: var(--bg-light-gray);
}
.vb-interactive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.vb-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.vb-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.vb-grid-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.vb-grid-item:hover img {
    transform: scale(1.05);
}
.vb-grid-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: var(--light-color);
}
.vb-grid-item-overlay h3 {
    color: var(--light-color);
    margin-bottom: 0.5rem;
}
.vb-grid-item-overlay p {
    margin-bottom: 0;
}
.vb-why-us-section .vb-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}
.vb-feature-item {
    text-align: center;
}
.vb-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vb-feature-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--light-color);
}
.vb-feature-item h3 {
    margin-bottom: 0.5rem;
}
.vb-tabs-section {
    background-color: var(--bg-light-gray);
}
.vb-tabs-wrapper {
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}
.vb-tab-buttons {
    display: flex;
    flex-direction: column;
    background-color: #f1f1f1;
}
.vb-tab-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}
.vb-tab-btn:last-child {
    border-bottom: none;
}
.vb-tab-btn.active, .vb-tab-btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}
.vb-tab-panel {
    display: none;
}
.vb-tab-panel.active {
    display: block;
}
.vb-panel-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.vb-panel-text {
    padding: 2rem;
}
.vb-featured-destinations-section .vb-destinations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.vb-destination-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vb-destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.vb-destination-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.vb-card-content {
    padding: 1.5rem;
}
.vb-card-content h4 {
    margin-bottom: 0.5rem;
}
.vb-card-content p {
    margin-bottom: 0;
}
.vb-stats-section {
    background: linear-gradient(rgba(10, 46, 54, 0.9), rgba(10, 46, 54, 0.9)), url('images/65.webp') no-repeat center center/cover;
    background-attachment: fixed;
    color: var(--light-color);
}
.vb-stats-section .vb-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}
.vb-stats-item h2, .vb-stats-item p {
    color: var(--light-color);
}
.vb-stats-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.vb-stats-label {
    font-size: 1rem;
    margin-bottom: 0;
}
.vb-gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
.vb-gallery-item {
    overflow: hidden;
    border-radius: 8px;
}
.vb-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.vb-gallery-item:hover img {
    transform: scale(1.05);
}
.vb-testimonials-section {
    background-color: var(--bg-light-gray);
}
.vb-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.vb-testimonial-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--secondary-color);
}
.vb-testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}
.vb-testimonial-card cite {
    font-weight: 600;
    color: var(--primary-color);
}
.vb-blog-preview-section .vb-blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.vb-blog-card a {
    display: block;
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-color);
}
.vb-blog-card a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.vb-blog-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.vb-blog-card-content {
    padding: 1.5rem;
}
.vb-blog-category {
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.75rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.vb-blog-card-content h3 {
    font-size: 1.25rem;
}
.vb-cta-section {
    background-color: var(--primary-color);
    text-align: center;
}
.vb-cta-section h2, .vb-cta-section p {
    color: var(--light-color);
}
.vb-cta-section p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}
.vb-main-footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}
.vb-footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.vb-footer-logo svg {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}
.vb-footer-logo svg text {
    fill: var(--light-color);
}
.vb-footer-links h4 {
    color: var(--light-color);
    margin-bottom: 1rem;
}
.vb-footer-links ul li {
    margin-bottom: 0.5rem;
}
.vb-footer-links a {
    color: rgba(255, 255, 255, 0.8);
}
.vb-footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}
.vb-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}
.vb-footer-bottom p {
    margin-bottom: 0;
}
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 767px) {
    .vb-main-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--light-color);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }
    .vb-main-header.nav-open .vb-main-nav {
        transform: translateX(0);
    }
    .vb-main-nav ul {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .vb-main-nav a {
        font-size: 1.5rem;
    }
    .vb-nav-toggle {
        display: block;
    }
}
@media (min-width: 768px) {
    .vb-main-nav {
        display: block;
    }
    .vb-interactive-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .vb-why-us-section .vb-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .vb-tab-buttons {
        flex-direction: row;
        border-bottom: 1px solid var(--border-color);
    }
    .vb-tab-btn {
        border-bottom: none;
    }
    .vb-tab-panel {
        display: none;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 2rem;
    }
    .vb-tab-panel.active {
        display: grid;
    }
    .vb-panel-image img {
        height: 100%;
        border-radius: 8px 0 0 8px;
    }
    .vb-featured-destinations-section .vb-destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vb-stats-section .vb-container {
        grid-template-columns: repeat(4, 1fr);
    }
    .vb-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 200px;
    }
    .item-1 { grid-column: span 2; grid-row: span 2; }
    .item-2 { grid-column: span 2; }
    .vb-testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .vb-blog-preview-section .vb-blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .vb-footer-top {
        grid-template-columns: 2fr 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    .vb-featured-destinations-section .vb-destinations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .vb-main-nav {
        display: flex;
        align-items: center;
        gap: 3rem;
    }
}
.dest-hero-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.dest-intro-section {
    background-color: var(--light-color);
    text-align: center;
    padding: 4rem 0;
}

.dest-intro-section p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
    color: #555;
}

.dest-filter-section {
    background-color: var(--bg-light-gray);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.dest-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--border-color);
    background-color: var(--light-color);
    color: var(--text-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--light-color);
}

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

.dest-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.dest-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.dest-card.hide {
    display: none;
}

.dest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.dest-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.dest-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dest-card-content h4 {
    margin-bottom: 0.5rem;
}

.dest-card-content p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.dest-card-content a {
    font-weight: 600;
    color: var(--secondary-color);
}

.dest-card-content a:hover {
    text-decoration: underline;
    color: var(--accent-color);
}

.dest-featured-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.dest-featured-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    background-color: var(--bg-light-gray);
    border-radius: 8px;
    overflow: hidden;
}

.dest-featured-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

.dest-featured-text {
    padding: 1.5rem;
}

.dest-featured-text span {
    display: inline-block;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dest-featured-text h3 {
    font-size: 2rem;
}

.dest-tips-section {
    background-color: var(--bg-light-gray);
}

.dest-tips-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.dest-tip-item {
    text-align: center;
    background: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.dest-tip-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dest-tip-icon svg {
    width: 25px;
    height: 25px;
    fill: var(--primary-color);
}

@media (min-width: 768px) {
    .dest-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .dest-featured-content {
        grid-template-columns: 1fr 1fr;
    }
    .dest-tips-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .dest-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .dest-featured-content {
        grid-template-columns: 1.2fr 1fr;
    }
}
@media (min-width: 768px) {
    .dest-featured-text {
        padding: 2rem;
    }

    .dest-featured-text h3 {
        font-size: 2.5rem; 
    }
}
.tours-hero-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.tours-sticky-feature-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}
.sticky-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.sticky-image-column {
    display: none;
}

.feature-text-block img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    height: 250px;
    object-fit: cover;
}

.feature-text-block {
    margin-bottom: 3rem; 
    padding: 1.5rem; 
    background: var(--bg-light-gray); 
}
.feature-text-block:last-child {
    margin-bottom: 0;
}
.feature-text-block h3 { color: var(--secondary-color); }

.tours-grid-slider-section {
    background-color: var(--bg-light-gray);
    padding: 5rem 0;
}

.tours-grid-slider {
    position: relative;
    overflow: hidden;
}

.grid-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.tour-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
}

.tour-card-image img { height: 250px; width: 100%; object-fit: cover; }
.tour-card-content { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.tour-card-content h3 { margin-bottom: 0.75rem; }
.tour-card-details { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; margin-bottom: 1rem; color: #6c757d; font-size: 0.9rem; }
.tour-card-details span { display: inline-block; }
.tour-card-content p { flex-grow: 1; margin-bottom: 1.5rem; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dots .dot.active {
    background-color: var(--primary-color);
}

.tours-custom-section { background: var(--primary-color); padding: 5rem 0; color: var(--light-color); }
.custom-tour-content { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.custom-tour-image img { border-radius: 8px; }
.custom-tour-text h2 { color: var(--light-color); }

.tours-included-section { background-color: var(--bg-light-gray); padding: 5rem 0; }
.included-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 3rem; }
.included-item { background: var(--light-color); padding: 2rem; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; }

.tours-styles-section { padding: 5rem 0; }
.tours-styles-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.style-card { position: relative; border-radius: 8px; overflow: hidden; height: 300px; }
.style-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.style-card:hover img { transform: scale(1.05); }
.style-card-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 2rem 1.5rem; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%); color: var(--light-color); }
.style-card-overlay h3 { color: var(--light-color); margin: 0; }

.tours-faq-section { background-color: var(--bg-light-gray); }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { background-color: var(--light-color); border-radius: 8px; margin-bottom: 1rem; box-shadow: 0 2px 10px rgba(0,0,0,0.05); overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; background: transparent; border: none; cursor: pointer; text-align: left; font-size: 1.125rem; font-weight: 600; color: var(--primary-color); }
.faq-icon { font-size: 1.5rem; transition: transform 0.3s ease; font-weight: 400; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out, padding 0.5s ease-out; }
.faq-answer p { padding: 0 1.5rem 1.5rem; margin: 0; line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

@media (min-width: 768px) {
    .grid-slider-wrapper { margin: 0 -0.75rem; }
    .tour-card { width: 50%; padding: 0 0.75rem; }
    .tours-custom-section .custom-tour-content { grid-template-columns: 1fr 1.2fr; gap: 3rem; }
    .included-grid { grid-template-columns: repeat(2, 1fr); }
    .tours-styles-grid { grid-template-columns: repeat(3, 1fr); }
    
    .sticky-feature-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .sticky-image-column { display: block; }
    .sticky-image-column .image-wrapper { position: sticky; top: 120px; border-radius: 8px; overflow: hidden; height: 500px; }
    .sticky-image-column img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s ease-in-out; }
    .sticky-image-column img.is-fading { opacity: 0; }
    
    .feature-text-block { margin-bottom: 10rem; padding: 1.5rem; background: var(--bg-light-gray); }
    .feature-text-block img { display: none; }
}

@media (min-width: 1024px) {
    .grid-slider-wrapper { margin: 0 -1rem; }
    .tour-card { width: 33.3333%; padding: 0 1rem; }
    .included-grid { grid-template-columns: repeat(4, 1fr); }
}
.about-hero-section {
    padding: 6rem 0;
    text-align: center;
    background-color: var(--light-color);
}
.about-hero-section h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}
.about-hero-section p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 1.5rem auto 0;
    color: #555;
}
.separator {
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border: none;
    margin: 1.5rem auto;
}

.about-philosophy-section {
    background-color: var(--bg-light-gray);
    padding: 5rem 0;
}
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
.philosophy-image img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story-section {
    padding: 5rem 0;
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}
.story-item {
    padding: 1.5rem;
    border-left: 3px solid var(--accent-color);
}

.about-team-section {
    background-color: var(--bg-light-gray);
    padding: 5rem 0;
}
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}
.team-member-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
}
.team-member-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center top;
}
.team-member-info {
    padding: 1.5rem;
}
.team-member-info span {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin: -0.5rem 0 1rem;
}

.about-values-section {
    padding: 5rem 0;
}
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}
.value-item {
    background: var(--bg-light-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}
.value-item h4 {
    margin-bottom: 0.5rem;
}

.about-map-section {
    padding: 5rem 0;
    background-color: var(--bg-light-gray);
}

.map-iframe-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%; /* Соотношение сторон 16:9 */
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}


.about-commitment-section {
    background: var(--primary-color);
    padding: 4rem 0;
    color: var(--light-color);
}
.about-commitment-section .vb-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}
.commitment-number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.commitment-suffix {
    font-size: 2.5rem;
    color: var(--accent-color);
}
.commitment-label {
    font-size: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.about-cta-section {
    padding: 5rem 0;
    text-align: center;
}
.about-cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
}
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 576px) {
    .cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr 1.2fr;
    }
    .story-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-commitment-section .vb-container {
        grid-template-columns: repeat(3, 1fr);
    }
     .about-map-section {
        min-height: 400px;
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.blog-hero-section {
    padding: 6rem 0;
    text-align: center;
    background-color: var(--light-color);
}
.blog-hero-section h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}
.blog-hero-section p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 1.5rem auto 0;
    color: #555;
}

.blog-featured-section {
    background-color: var(--bg-light-gray);
    padding: 5rem 0;
}
.featured-post {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}
.featured-post-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.featured-post-content {
    padding: 2rem;
}
.post-category {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.25rem 0.75rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}
.featured-post-content h2 {
    font-size: 2rem;
}
.featured-post-content p {
    margin-bottom: 2rem;
}

.blog-filter-section {
    padding: 5rem 0;
}
.blog-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}
.filter-btn {
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--border-color);
    background-color: var(--light-color);
    color: var(--text-color);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}
.filter-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--light-color);
}
.filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-color);
}
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.blog-post-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.blog-post-card.hide {
    display: none;
}
.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.blog-post-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.card-content .post-category {
    margin-bottom: 0.5rem;
}
.card-content h3 {
    font-size: 1.25rem;
    flex-grow: 1;
}
.card-content p {
    margin: 0.5rem 0 1.5rem;
}
.card-content a {
    font-weight: 600;
    color: var(--secondary-color);
}
.card-content a:hover {
    text-decoration: underline;
    color: var(--accent-color);
}

.blog-popular-section {
    background-color: var(--bg-light-gray);
    padding: 5rem 0;
}
.popular-posts-list {
    display: grid;
    gap: 1.5rem;
}
.popular-post {
    display: block;
    color: var(--text-color);
    background-color: var(--light-color);
    padding: 1rem;
    border-radius: 8px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.popular-post:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}
.popular-post img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.popular-post-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.75rem;
}
.popular-post-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}
.popular-post-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.blog-expert-section {
    padding: 5rem 0;
}
.expert-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
.expert-image img {
    width: 100%;
    border-radius: 8px;
}
.qa-item {
    border-left: 3px solid var(--accent-color);
    padding-left: 1.5rem;
    margin-top: 2rem;
}
.qa-item:first-of-type {
    margin-top: 0;
}
.qa-item h4 {
    margin-bottom: 0.5rem;
}
.qa-item p {
    font-style: italic;
    color: #555;
}

.blog-philosophy-gallery-section {
    padding: 5rem 0;
    background-color: var(--bg-light-gray);
}
.philosophy-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.philosophy-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    background-color: var(--light-color);
}
.philosophy-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.philosophy-card figcaption {
    padding: 1rem 1.25rem;
    font-weight: 600;
    text-align: center;
}

@media (min-width: 576px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .philosophy-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .featured-post {
        grid-template-columns: 1fr 1fr;
    }
    .featured-post-image img {
        height: 100%;
    }
    .expert-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 3rem;
    }
    .popular-post {
        display: grid;
        grid-template-columns: 1fr 80px;
        gap: 1.5rem;
        align-items: center;
    }
    .popular-post:hover {
        transform: translateX(5px);
    }
    .popular-post img {
        width: 80px;
        height: 80px;
        margin-bottom: 0;
        order: 2;
    }
    .popular-post-content {
        order: 1;
        position: relative;
        padding-left: 3.5rem;
    }
    .popular-post .popular-post-num {
        display: none;
    }
    .popular-post-content::before {
        content: attr(data-num);
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2rem;
        font-weight: 700;
        color: var(--border-color);
    }
    .popular-post-content h4 {
        font-size: 1.1rem;
    }
    .popular-post-content p {
        font-size: 0.9rem;
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .philosophy-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}
.quote-hero-section {
    padding: 6rem 0;
    text-align: center;
    background-color: var(--light-color);
}
.quote-hero-section h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}
.quote-hero-section p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 1.5rem auto 0;
    color: #555;
}

.quote-philosophy-section {
    background-color: var(--bg-light-gray);
    padding: 5rem 0;
}
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}
.philosophy-item h4 {
    margin-bottom: 0.5rem;
}

.quote-process-section {
    padding: 5rem 0;
}
.process-timeline {
    position: relative;
    display: grid;
    gap: 2rem;
}
.process-step {
    position: relative;
    padding-left: 3rem;
}
.process-step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}
.process-step-content h3 {
    margin-bottom: 0.5rem;
}

.tours-faq-section {
    background-color: var(--bg-light-gray);
    padding: 5rem 0;
}
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { background-color: var(--light-color); border-radius: 8px; margin-bottom: 1rem; box-shadow: 0 2px 10px rgba(0,0,0,0.05); overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; background: transparent; border: none; cursor: pointer; text-align: left; font-size: 1.125rem; font-weight: 600; color: var(--primary-color); }
.faq-icon { font-size: 1.5rem; transition: transform 0.3s ease; font-weight: 400; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out, padding 0.5s ease-out; }
.faq-answer p { padding: 0 1.5rem 1.5rem; margin: 0; line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

.quote-success-section {
    padding: 5rem 0;
}
.success-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}
.success-card {
    background: var(--bg-light-gray);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}
.success-card p {
    font-style: italic;
    margin-bottom: 1rem;
}
.success-card cite {
    font-weight: 600;
    color: var(--primary-color);
}

.quote-cta-section {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 5rem 0;
    text-align: center;
}
.quote-cta-section h2, .quote-cta-section p {
    color: var(--light-color);
}
.quote-cta-section p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}
.contact-item span {
    display: block;
    font-weight: 600;
    color: var(--accent-color);
}
.contact-item p {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0.5rem 0 0;
}

@media (min-width: 768px) {
    .philosophy-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .process-timeline::before {
        content: '';
        position: absolute;
        left: 19px;
        top: 20px;
        bottom: 20px;
        width: 2px;
        background: var(--border-color);
        z-index: -1;
    }
    .success-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-info {
        flex-direction: row;
        gap: 4rem;
    }
}
.philosophy-item-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.philosophy-item-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--light-color);
}
.contact-item p a {
    color: var(--light-color); 
    text-decoration: none; 
    transition: color 0.3s ease;
}

.contact-item p a:hover {
    color: var(--accent-color); 
}
.policy-hero-section {
    padding: 4rem 0;
    text-align: center;
    background-color: var(--bg-light-gray);
    border-bottom: 1px solid var(--border-color);
}
.policy-hero-section h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: 0.5rem;
}
.policy-hero-section p {
    color: #6c757d;
    margin: 0;
}

.policy-content-section {
    padding: 3rem 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p, .policy-content ul {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.policy-content ul {
    list-style-type: disc;
    padding-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.75rem;
}

.policy-content a {
    font-weight: 600;
}
.thank-you-page {
    background-color: var(--bg-light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 1.5rem;
}

.thank-you-content .vb-container {
    max-width: 600px;
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
}

.thank-you-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--light-color);
}

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thank-you-content p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
}

.thank-you-content p a {
    font-weight: 600;
}

.tours-grid-slider-section {
    background-color: var(--bg-light-gray);
    padding: 5rem 0;
}

.tours-grid-slider {
    position: relative;
    overflow: hidden;
}

.grid-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    margin: 0 -0.75rem; 
}

.tour-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
    height: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    width: 100%; 
    padding: 0 0.75rem;
}

.tour-card-image img { 
    height: 250px; 
    width: 100%; 
    object-fit: cover; 
}
.tour-card-content { 
    padding: 1.5rem; 
    display: flex; 
    flex-direction: column; 
    flex-grow: 1; 
}
.tour-card-content h3 { 
    margin-bottom: 0.75rem; 
}
.tour-card-details { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 0.5rem 1rem; 
    margin-bottom: 1rem; 
    color: #6c757d; 
    font-size: 0.9rem; 
}
.tour-card-details span { 
    display: inline-block; 
}
.tour-card-content p { 
    flex-grow: 1; 
    margin-bottom: 1.5rem; 
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-dots .dot.active {
    background-color: var(--primary-color);
}

@media (min-width: 768px) {
    .tour-card {
        width: 50%;
    }
}

@media (min-width: 1024px) {
    .tour-card {
        width: 33.3333%;
    }
}


@media (min-width: 768px) {
    .tour-card {
        width: calc(50% - 0.75rem); 
    }
    .grid-slider-wrapper {
        gap: 1.5rem; 
    }
}

@media (min-width: 1024px) {
    .tour-card {
        width: calc(33.3333% - 1rem); 
    }
     .grid-slider-wrapper {
        gap: 1.5rem;
    }
}
.about-philosophy-section {
    background-color: var(--bg-light-gray);
    padding: 5rem 0;
}
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
.philosophy-image img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.philosophy-image.image-right {
    display: none;
}


@media (min-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

@media (min-width: 1024px) {
    .philosophy-grid {
        grid-template-columns: 1fr 1.5fr 1fr;
        gap: 3rem;
    }
    .philosophy-image.image-right {
        display: block; 
    }
}