

/* Start:/ecotourism/style.css?178885986827424*/
/* /ecotourism/style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Arial', sans-serif;
    background: #FAF8F0;
    color: #333;
    overflow-x: hidden;
}

.page-content {
  background-color: #FAF8F0 !important;
}

.description-text {
    text-align: justify;
}

/* ---------- HERO SECTION ---------- */
.ecotourism-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    background: #FAF8F0;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.ecotourism-hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.title-green {
    color: #2ECC71;
    display: block;
}

.title-pink {
    color: #FF6B9D;
    display: block;
}

.ecotourism-buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
}

.btn-pink {
    background: #FF6B9D;
    color: #fff;
    border-color: #FF6B9D;
}

.btn-pink:hover {
    background: #ff5289;
    border-color: #ff5289;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 157, 0.3);
}

.btn-green-outline {
    background: transparent;
    color: #2ECC71;
    border-color: #2ECC71;
}

.btn-green-outline:hover {
    background: #2ECC71;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3);
}

.hero-chart {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular-chart {
    width: 280px;
    height: 280px;
    animation: rotateChart 20s linear infinite;
}

@keyframes rotateChart {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ---------- STATS SECTION ---------- */
.ecotourism-stats {
    padding: 0 80px 80px;
    background: #FAF8F0;
}

.stats-container {
    max-width: 100%;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    border-top: 2px solid #D0D0D0;
}

.stat-item {
    padding: 50px 30px;
    text-align: center;
    position: relative;
    border-left: 2px solid #D0D0D0;
}

.stat-item:first-child {
    border-left: none;
}

.stat-number {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 10px;
    line-height: 1.2;
}

.stat-number.green {
    color: #2ECC71;
}

.stat-number.pink {
    color: #FF6B9D;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    line-height: 1.5;
    max-width: 220px;
    margin: 0 auto;
}

/* ---------- DESCRIPTION SECTION ---------- */
.ecotourism-description {
    padding: 60px 80px;
    background: #FAF8F0;
}

.description-container {
    max-width: 100%;
    margin: 0 auto;
}

.description-header {
    display: inline-block;
    background: #fff;
    padding: 25px 50px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 50px;
}

.description-header span {
    display: block;
    font-size: 25px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
}

.desc-green {
    color: #2ECC71;
    margin-bottom: 6px;
}

.desc-pink {
    color: #FF6B9D;
}

.description-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.description-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.highlight-pink {
    color: #FF6B9D;
    font-weight: 700;
}

.highlight-green {
    color: #2ECC71;
    font-weight: 700;
}

/* ---------- PROTECTED SECTION ---------- */
.ecotourism-protected {
    padding: 60px 80px 100px;
    background: #FAF8F0;
}

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

.protected-header {
    display: inline-block;
    background: #fff;
    padding: 25px 50px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 50px;
}

.protected-header span {
    display: block;
    font-size: 25px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
}

.prot-green {
    color: #2ECC71;
    margin-bottom: 6px;
}

.prot-pink {
    color: #FF6B9D;
}

.protected-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.protected-item {
    background: transparent;
    overflow: hidden;
}

.protected-item-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.protected-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 60px;
}

.protected-item-info {
    padding: 20px 10px 0;
    text-align: center;
}

.protected-item-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.3;
}

.protected-item-region {
    font-size: 15px;
    color: #666;
    font-weight: 600;
    margin: 0;
}

.protected-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.protected-item-link:hover {
    text-decoration: none;
    color: inherit;
}

/* ---------- FOOTER BLOCK ---------- */
.ecotourism-footer-block {
    padding: 60px 80px;
    background: #FAF8F0;
    text-align: center;
}

.footer-text {
    display: inline-block;
    background: #fff;
    padding: 30px 60px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.footer-green,
.footer-pink {
    display: block;
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
}

.footer-green {
    color: #2ECC71;
    margin-bottom: 8px;
}

.footer-pink {
    color: #FF6B9D;
}

/* ---------- ROUTES SECTION ---------- */
.ecotourism-routes {
    padding: 0px 80px 100px;
    background: #FAF8F0;
}

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

.routes-header {
    display: inline-block;
    background: #fff;
    padding: 25px 50px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 50px;
}

.routes-header span {
    display: block;
    font-size: 25px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
}

.routes-green {
    color: #2ECC71;
    margin-bottom: 6px;
}

.routes-pink {
    color: #FF6B9D;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.route-item {
    background: transparent;
    border-radius: 40px;
    overflow: hidden;
    cursor: pointer;
}

.route-item-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 40px;
}

.route-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.route-item-info {
    padding: 20px 10px 0;
    text-align: center;
}

.route-item-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.route-item-preview {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ---------- ROUTE POPUP ---------- */
.route-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 248, 240, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.route-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.route-popup-content {
    background: #fff;
    border-radius: 40px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 50px 60px 60px;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.3s ease;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.route-popup-overlay.active .route-popup-content {
    transform: translateY(0);
}

.route-popup-close {
    position: absolute;
    top: 35px;
    right: 45px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #FF6B9D;
    background: transparent;
    color: #FF6B9D;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.route-popup-close:hover {
    background: transparent;
    color: #FF6B9D;
}

.route-popup-image-wrapper {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 35px;
    overflow: hidden;
}

.route-popup-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 43px;
    object-fit: cover;
}

.route-popup-title {
    font-size: 20px;
    font-weight: 500;
    color: #616161;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 25px;
    line-height: 1.3;
    letter-spacing: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.route-popup-park {
    font-size: 14px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.route-popup-type {
    font-size: 16px;
    font-weight: 700;
    color: #2ECC71;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 8px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.route-popup-name {
    font-size: 20px;
    font-weight: 900;
    color: #FF6B9D;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 30px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.route-popup-description {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 35px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.route-popup-description p {
    margin-bottom: 15px;
}

.route-popup-description p:last-child {
    margin-bottom: 0;
}

.route-popup-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #FF6B9D;
    color: #fff;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.route-popup-btn:hover {
    background: #ff5289;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 157, 0.3);
}

/* ---------- VIDEOS SECTION ---------- */
.ecotourism-videos {
    padding: 0px 80px 100px;
    background: #FAF8F0;
}

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

.videos-header {
    display: inline-block;
    background: #fff;
    padding: 25px 50px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 50px;
}

.videos-header span {
    display: block;
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
}

.videos-green {
    color: #2ECC71;
    margin-bottom: 6px;
}

.videos-pink {
    color: #FF6B9D;
}

.video-category {
    margin-bottom: 60px;
}

.video-category:last-child {
    margin-bottom: 0;
}

.video-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

.video-carousel-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
    width: auto;
    height: auto;
    min-width: 80px;
    min-height: 45px;
}

.video-carousel-btn:hover {
    opacity: 0.7;
}

.video-carousel-btn svg {
    width: 122px;
    height: 45px;
}

.video-carousel {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.video-item {
    display: none;
}

.video-item.active {
    display: block;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 40px;
    overflow: hidden;
    background: #1a1a1a;
    cursor: pointer;
    display: block;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    transition: background 0.3s ease;
}

.video-thumbnail:hover .video-play-overlay {
    background: rgba(0,0,0,0.5);
}

.video-play-btn {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 35px 0 35px 60px;
    border-color: transparent transparent transparent #fff;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.video-thumbnail:hover .video-play-btn {
    transform: scale(1.1);
}

.video-player {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 40px;
    display: none;
    background: #000;
}

.video-category-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
    text-align: left;
}

/* ---------- QR SECTION ---------- */
.ecotourism-qr {
    padding: 0px 80px 100px;
    background: #FAF8F0;
}

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

.qr-header {
    display: inline-block;
    background: #fff;
    padding: 25px 50px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.qr-header span {
    display: block;
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
}

.qr-green {
    color: #2ECC71;
    margin-bottom: 6px;
}

.qr-pink {
    color: #FF6B9D;
}

.qr-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
    text-align: left;
}

.qr-codes-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.qr-item {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    min-width: 400px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.qr-code {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.qr-info {
    text-align: left;
}

.qr-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.qr-link {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    word-break: break-all;
    transition: color 0.3s ease;
}

.qr-link:hover {
    color: #FF6B9D;
}

.qr-mobile-links {
    display: none;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.qr-mobile-btn {
    display: inline-block;
    padding: 18px 40px;
    border: 3px solid #2ECC71;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    text-align: center;
    background: transparent;
    transition: all 0.3s ease;
    max-width: 320px;
    width: 100%;
}

.qr-mobile-btn:hover {
    background: #2ECC71;
    color: #fff;
}

/* ---------- ECOTOURISM HEADER ---------- */
.ecotourism-header {
    background: #FAF8F0;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ecotourism-header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.ecotourism-header-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.ecotourism-header-logo-item {
    display: flex;
    align-items: center;
}

.ecotourism-header-logos .ecotourism-header-logo-item:first-child .ecotourism-header-logo-img {
    height: 120px;
}

.ecotourism-header-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.ecotourism-header-logo-item svg {
    height: 60px;
    width: auto;
}

.ecotourism-header-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: flex-end;
}

.ecotourism-header-link {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ecotourism-header-link:hover {
    color: #FF6B9D;
}

.ecotourism-header-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid #FF6B9D;
    border-radius: 30px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ecotourism-header-lang span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

/* ---------- RESPONSIVE ---------- */

/* Large screens (1920px+) */
@media screen and (min-width: 1920px) {
    .page-header__content {
        display: none !important;
    }
    
    .ecotourism-hero-title {
        font-size: 118px !important;
        line-height: 1.15 !important;
    }
    
    .ecotourism-hero {
        padding: 80px 120px;
    }
    
    .hero-chart {
        flex: 0 0 400px;
    }
    
    .circular-chart {
        width: 380px;
        height: 380px;
    }
    
    .ecotourism-header-container {
        max-width: 100%;
        padding: 0 40px 0 20px;
    }
}

/* Tablet (1024px) */
@media (max-width: 1024px) {
    .ecotourism-hero {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .ecotourism-hero-title {
        font-size: 48px;
        align-items: center;
    }
    
    .ecotourism-buttons {
        align-items: center;
        justify-content: center;
    }
    
    .hero-chart {
        flex: 0 0 auto;
    }
    
    .circular-chart {
        width: 220px;
        height: 220px;
    }
    
    .ecotourism-stats {
        padding: 0 40px 60px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        border-top: 2px solid #D0D0D0;
    }
    
    .stat-item {
        padding: 40px 30px;
        border-left: 2px solid #D0D0D0;
        border-top: 2px solid #D0D0D0;
    }
    
    .stat-item:nth-child(odd) {
        border-left: none;
    }
    
    .stat-item:nth-child(-n+2) {
        border-top: none;
    }
    
    .ecotourism-description {
        padding: 40px;
    }
    
    .description-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .ecotourism-protected {
        padding: 40px;
    }
    
    .protected-grid {
        gap: 30px;
    }
    
    .protected-item-image {
        height: 260px;
    }
    
    .ecotourism-routes {
        padding: 60px 40px;
    }
    
    .routes-grid {
        gap: 30px;
    }
    
    .route-popup-content {
        padding: 40px 30px 50px;
    }
    
    .ecotourism-videos {
        padding: 60px 40px;
    }
    
    .video-thumbnail,
    .video-player {
        height: 400px;
    }
    
    .ecotourism-qr {
        padding: 60px 40px;
    }
    
    .qr-codes-wrapper {
        gap: 40px;
    }
    
    .qr-item {
        min-width: 350px;
    }
    
    .ecotourism-header {
        padding: 20px 40px;
    }
    
    .ecotourism-header-container {
        gap: 20px;
    }
    
    .ecotourism-header-logos {
        gap: 20px;
    }
    
    .ecotourism-header-logos .ecotourism-header-logo-item:first-child .ecotourism-header-logo-img {
        height: 100px;
    }
    
    .ecotourism-header-logo-img {
        height: 50px;
    }
    
    .ecotourism-header-logo-item svg {
        height: 50px;
    }
    
    .ecotourism-header-nav {
        gap: 25px;
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    .ecotourism-hero {
        padding: 30px 20px;
    }
    
    .ecotourism-hero-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .btn {
        padding: 16px 32px;
        font-size: 16px;
        max-width: 320px;
        text-align: center;
        flex: 1 1 auto;
    }
    
    .hero-chart {
        flex: 0 0 auto;
        width: 300px;
    }
    
    .ecotourism-stats {
        padding: 0 20px 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        border-top: 2px solid #D0D0D0;
    }
    
    .stat-item {
        padding: 40px 30px;
        border-left: none !important;
        border-top: 2px solid #D0D0D0 !important;
    }
    
    .stat-item:first-child {
        border-top: none !important;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-label {
        font-size: 15px;
    }
    
    .ecotourism-description {
        padding: 30px 20px;
    }
    
    .description-header,
    .protected-header {
        padding: 20px 30px;
        margin-bottom: 30px;
    }
    
    .description-header span,
    .protected-header span {
        font-size: 18px;
    }
    
    .description-content {
        padding: 25px;
    }
    
    .description-text p {
        font-size: 15px;
    }
    
    .ecotourism-protected {
        padding: 30px 20px;
    }
    
    .protected-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .protected-item-image {
        height: 250px;
    }
    
    .protected-item-name {
        font-size: 17px;
    }
    
    .routes-header {
        padding: 20px 30px;
        margin-bottom: 30px;
    }
    
    .routes-header span {
        font-size: 18px;
    }
    
    .routes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .route-item-image {
        height: 250px;
    }
    
    .route-popup-content {
        padding: 35px 25px 45px;
        border-radius: 30px;
    }
    
    .route-popup-close {
        top: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
        font-size: 24px;
    }
    
    .route-popup-image-wrapper {
        max-width: 100%;
        margin-bottom: 25px;
    }
    
    .route-popup-title {
        font-size: 18px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .route-popup-park {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .route-popup-type {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .route-popup-name {
        font-size: 18px;
        margin-bottom: 25px;
    }
    
    .route-popup-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .videos-header {
        padding: 20px 30px;
        margin-bottom: 30px;
    }
    
    .videos-header span {
        font-size: 28px;
    }
    
    .video-carousel-wrapper {
        gap: 15px;
    }
    
    .video-carousel-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .video-thumbnail,
    .video-player {
        height: 300px;
        border-radius: 30px;
    }
    
    .video-play-btn {
        border-width: 30px 0 30px 50px;
    }
    
    .video-category-name {
        font-size: 15px;
    }
    
    .qr-header {
        padding: 20px 30px;
        margin-bottom: 30px;
    }
    
    .qr-header span {
        font-size: 28px;
    }
    
    .qr-header .qr-green {
        display: none;
    }
    
    .qr-header .qr-pink {
        display: none;
    }
    
    .qr-header::before {
        content: 'ПОЛЕЗНЫЕ';
        display: block;
        font-size: 28px;
        font-weight: 900;
        text-transform: uppercase;
        color: #2ECC71;
        line-height: 1.2;
        margin-bottom: 6px;
    }
    
    .qr-header::after {
        content: 'ССЫЛКИ';
        display: block;
        font-size: 28px;
        font-weight: 900;
        text-transform: uppercase;
        color: #FF6B9D;
        line-height: 1.2;
    }
    
    .qr-subtitle {
        display: none;
    }
    
    .qr-codes-wrapper {
        display: none;
    }
    
    .qr-mobile-links {
        display: flex;
    }
    
    .ecotourism-header {
        padding: 15px 20px;
    }
    
    .ecotourism-header-container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .ecotourism-header-logos {
        order: 1;
        width: 100%;
        justify-content: center;
        gap: 15px;
    }
    
    .ecotourism-header-logos .ecotourism-header-logo-item:first-child .ecotourism-header-logo-img {
        height: 80px;
    }
    
    .ecotourism-header-logo-img {
        height: 50px;
    }
    
    .ecotourism-header-logo-item svg {
        height: 50px;
    }
    
    .ecotourism-header-nav {
        display: none;
    }
    
    .ecotourism-header-lang {
        order: 2;
    }
    
    .ecotourism-header-link {
        font-size: 14px;
    }
}

/* Small mobile (480px) */
@media (max-width: 480px) {
    .ecotourism-hero-title {
        font-size: 28px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .description-header span,
    .protected-header span {
        font-size: 20px;
    }
    
    .description-text p {
        font-size: 14px;
    }
    
    .protected-item-image {
        height: 220px;
    }
    
    .protected-item-name {
        font-size: 16px;
    }
    
    .protected-item-region {
        font-size: 14px;
    }
    
    .routes-header span {
        font-size: 20px;
    }
    
    .route-item-image {
        height: 220px;
    }
    
    .route-popup-content {
        padding: 30px 20px 40px;
        border-radius: 25px;
    }
    
    .route-popup-title {
        font-size: 16px;
        margin-bottom: 18px;
    }
    
    .route-popup-park {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .route-popup-type {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .route-popup-name {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .route-popup-description {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .route-popup-btn {
        width: 100%;
        text-align: center;
    }
    
    .videos-header span {
        font-size: 24px;
    }
    
    .video-thumbnail,
    .video-player {
        height: 220px;
    }
    
    .video-carousel-btn {
        min-width: 40px;
        min-height: 30px;
    }
    
    .video-carousel-btn svg {
        width: 40px;
        height: 20px;
    }
    
    .video-carousel-wrapper {
        gap: 8px;
    }
    
    .qr-header {
        padding: 20px 30px;
    }
    
    .qr-header::before,
    .qr-header::after {
        font-size: 24px;
    }
    
    .qr-mobile-btn {
        padding: 16px 30px;
        font-size: 15px;
    }
    
    .ecotourism-header-logos .ecotourism-header-logo-item:first-child .ecotourism-header-logo-img {
        height: 70px;
    }
    
    .ecotourism-header-logo-img {
        height: 40px;
    }
    
    .ecotourism-header-logo-item svg {
        height: 40px;
    }
    
    .ecotourism-header-lang span {
        display: none;
    }
}
/* End */


/* Start:/local/templates/main/styles.css?1769696791152*/
.fullscreen-section__item-title a {	
	color:#fff;
	text-decoration: none;	
}


.fullscreen-section__item-title a:hover {
	text-decoration: underline;	
}
/* End */
/* /ecotourism/style.css?178885986827424 */
/* /local/templates/main/styles.css?1769696791152 */
