/*
Theme Name: MindShowsV1
Author: Grasu Costin
Description: Tema custom
Version: 1.0 - Final Challengers
*/

@font-face {
    font-family: 'Aerospace';
    src: url('assets/fonts/Aerospace.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Firlest';
    src: url('assets/fonts/Firlest-Regular.otf') format('opentype'); 
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Carnevalee Freakshow';
    /* Asigură-te că numele fișierului pus pe server coincide EXACT (inclusiv spațiile) */
    src: url('assets/fonts/Carnevalee Freakshow.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Park Lane NF';
    src: url('assets/fonts/ParkLaneNF.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;700;900&display=swap');

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    background: #000;
    color: #fff;
    -webkit-tap-highlight-color: transparent;
    width: 100%;
    overflow-x: hidden; 
}

.site-header {
    background: #201F1F;
    height: 80px; 
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
}

.header-inner {
    width: 100%;
    padding: 0 64px; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1920px;
    position: relative; 
}

.logo-container img, 
.logo-container svg {
    display: block;
    height: 40px;
    width: auto;
}

.nav-buttons-container {
    display: flex;
    align-items: center;
    gap: 43px; 
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 40px; 
}

.nav-links li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;
    color: #FFFFFF;
    padding: 2px 10px;
    border-radius: 4px;
    transition: background 0.3s ease, text-shadow 0.3s ease;
    position: relative;
    opacity: 0.75;
}

.nav-links li a:hover {
    opacity: 1;
}

.nav-links li a::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 1px;
    margin-top: 2px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: transform, opacity;
}

.nav-links li a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-links li:nth-child(1) a:hover {
    background: radial-gradient(45.83% 45.83% at 49.24% 100%, rgba(0, 255, 187, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
    text-shadow: 0px 0px 4px #00FFBB;
}

.nav-links li:nth-child(1) a::after {
    background-color: #00FFBB;
}

.nav-links li:nth-child(2) a:hover {
    background: radial-gradient(51.81% 51.83% at 49.43% 94%, rgba(245, 56, 147, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
    text-shadow: 0px 0px 4px #F53893;
}

.nav-links li:nth-child(2) a::after {
    background-color: #F53893;
}

.nav-links li:nth-child(3) a:hover {
    background: radial-gradient(48% 48% at 47.73% 100%, rgba(138, 56, 245, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
    text-shadow: 0px 0px 4px #8A38F5;
}

.nav-links li:nth-child(3) a::after {
    background-color: #8A38F5;
}

.btn-signup {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 49px;
    border: 1px solid #FFFFFF;
    border-radius: 51px;
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-signup:hover {
    background-color: #FFFFFF;
    color: #201F1F;
}

.mobile-toggle, 
.mobile-menu-overlay {
    display: none;
}

.menu-item-disabled a {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.menu-item-disabled a:hover {
    background: none;
    text-shadow: none;
}

.menu-item-disabled a::after {
    display: none;
}

.journey-hero-wrapper {
    position: relative;
    width: 100%;
    background-color: #000000; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; 
    padding-top: 147.5px; 
}

.hero-title-component {
    position: relative;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.6s ease-out;
    will-change: opacity;
    margin-bottom: 0; 
}

.hero-title-component.in-view {
    opacity: 1;
}

.hero-dynamic-title {
    font-family: var(--title-font);
    color: var(--c1);
    margin: 0; 
    padding: 0; 
    line-height: 0.8; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}

.hero-main-heading-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-top-subtitle {
    font-family: var(--title-font);
    font-weight: 400;
    color: var(--c1);
    padding: 0;
    line-height: 1.1; 
    margin: 5px 0 0 0;
    text-align: center;
}

.hero-image-component {
    position: relative; 
    display: block;
    width: 100%;
    height: 1070px;
    background-image: var(--hero-bg);
    background-position: top center;
    background-size: 1745.28px auto;
    background-repeat: no-repeat;
    z-index: 1; 
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s ease-out;
    will-change: opacity;
}

.hero-image-component.in-view {
    opacity: 1;
}

.hero-image-component::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000000 0%, rgba(10, 9, 9, 0) 15%, rgba(10, 9, 9, 0) 90%, #000000 100%);
    z-index: 2; 
}

.hero-content-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    position: relative; 
    z-index: 10; 
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #FFFFFF;
    width: 100%;
    max-width: 95vw; 
    box-sizing: border-box;
}

.hero-subtitle {
    font-family: var(--title-font);
    font-weight: 400;
    color: var(--c1);
    padding: 0;
    line-height: 1.1; 
    margin: 0 0 10px 0;
}

.hero-description {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
    color: var(--c1);
    padding: 0;
    line-height: 145%;
    max-width: 100%; 
    margin: 0 0 17px 0;
}

.hero-cta-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    width: 182px;
    height: 47px;
    background: var(--c1);
    border-radius: 51px;
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 145%;
    color: #0A0909;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta-btn:hover {
    background: var(--c4);
    color: var(--c1);
    cursor: pointer;
}

.keypoints-section {
    position: relative;
    width: 100%;
    z-index: 5; 
    padding: 50px 0;
    background-color: var(--c3);
}

.keypoints-container {
    width: 100%;
    max-width: 1315px; 
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap; 
}

.keypoint-card {
    width: 25%;
    max-width: 340px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px; 
    padding: 0 15px;
    transform-origin: center center;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
}

.keypoint-card:hover {
    transform: scale(1.1) !important; 
    z-index: 2; 
}

.kp-icon {
    width: 88px;
    height: 88px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.kp-icon img, 
.kp-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.kp-title {
    font-family: var(--title-font);
    font-weight: 400;
    font-size: 38px;
    line-height: 0.9;
    color: var(--c2);
    margin: 0;
}

.kp-desc {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 145%;
    color: var(--c2);
    margin: 0;
}

.journey-banner-wrapper {
    width: 100%;
    padding: 90px 0; 
    box-sizing: border-box;
    display: flex;
    justify-content: center; 
    background-color: #000; 
}

.journey-banner-wrapper img {
    width: 100%; 
    max-width: 100%; 
    height: auto; 
    display: block; 
    object-fit: contain; 
}

.banner-img-mobile {
    display: none !important; 
}

.obiective-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 65px 23px;
    gap: 50px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.obiective-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.obiective-title {
    font-family: var(--title-font);
    font-weight: 400;
    font-size: 64px;
    line-height: 145%;
    text-align: center;
    color: var(--c1);
    margin: 0;
}

.obiective-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.obiectiv-card {
    background: #2A2A2A;
    border-radius: 61px;
    padding: 20px 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: background-color 0.3s ease, border-radius 0.3s ease;
    overflow: hidden;
}

.obiectiv-card.expanded {
    border-radius: 28px;
}

.obiectiv-header-visible {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    position: relative;
    width: 100%;
}

.obiectiv-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: filter 0.3s ease;
}

.obiectiv-icon img,
.obiectiv-icon svg {
    max-width: 100%;
    max-height: 100%;
}

.obiectiv-title-wrapper {
    width: 100%;
}

.obiectiv-card-title {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 127%;
    color: var(--c1);
    margin: 0;
    transition: color 0.3s ease;
}

.obiectiv-expand-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.obiectiv-expand-icon svg path {
    transition: stroke 0.3s ease;
}

.obiectiv-body-hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, margin-top 0.3s ease;
}

.obiectiv-desc {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    color: var(--c1);
    margin: 0;
    transition: color 0.3s ease;
}

.obiectiv-card:hover,
.obiectiv-card.expanded {
    background-color: var(--c1);
}

.obiectiv-card:hover .obiectiv-card-title,
.obiectiv-card.expanded .obiectiv-card-title {
    color: #2A2A2A;
}

.obiectiv-card:hover .obiectiv-icon,
.obiectiv-card.expanded .obiectiv-icon {
    filter: invert(1);
}

.obiectiv-card:hover .obiectiv-expand-icon,
.obiectiv-card.expanded .obiectiv-expand-icon {
    border-color: #2A2A2A;
}

.obiectiv-card:hover .obiectiv-expand-icon svg path,
.obiectiv-card.expanded .obiectiv-expand-icon svg path {
    stroke: #2A2A2A;
}

.obiectiv-card:hover .obiectiv-desc,
.obiectiv-card.expanded .obiectiv-desc {
     color: #6A6A6A;
}

.obiectiv-card.expanded .obiectiv-body-hidden {
    max-height: 250px;
    opacity: 1;
    margin-top: 15px;
}

.obiectiv-card.expanded .obiectiv-expand-icon {
    transform: rotate(180deg);
}

.obiective-bottom-text {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 145%;
    text-align: center;
    color: var(--c1);
    max-width: 1018px;
    margin: 0 auto;
}

.unic-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px; 
    background-color: #121212;
    width: 100%;
    
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.unic-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.unic-title {
    font-family: var(--title-font);
    font-weight: 400;
    font-size: 64px;
    line-height: 145%;
    text-align: center;
    color: var(--c1);
    margin: 0 0 60px 0;
}

.unic-cards-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: stretch;
    width: 100%;
    max-width: 1280px;
    gap: 30px;
}

.unic-card {
    position: relative;
    flex: 1;
    min-height: 580px;
    max-width: 370px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 25px;
    cursor: default;
    
    transform-origin: center center;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.unic-card:hover,
.unic-card:active {
    transform: scale(1.05);
    box-shadow: 0px 10px 25px rgba(0,0,0,0.6);
    z-index: 2;
}

.unic-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.unic-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.unic-card-title {
    font-family: var(--title-font);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.1;
    color: var(--c1);
    margin: 0;
}

.unic-card-desc {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 145%;
    color: var(--c1);
    margin: 0;
}

.gallery-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 45px 20px;
    background-color: var(--c3);
    width: 100%;
    overflow: hidden;
    
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.gallery-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.gallery-title {
    font-family: var(--title-font);
    font-weight: 400;
    font-size: 64px;
    line-height: 145%;
    text-align: center;
    color: var(--c2);
    margin: 0 0 5px 0;
}

.gallery-desc {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 145%;
    text-align: center;
    color: var(--c2);
    max-width: 1018px;
    margin: 0 0 43px 0;
}

.gallery-carousel-wrapper {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-track {
    position: relative;
    width: 100%;
    max-width: 950px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.gallery-slide {
    position: absolute;
    width: 55%;
    max-width: 650px;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    transform: translateX(0) scale(0.6);
    z-index: 1;
    pointer-events: none;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 3;
    pointer-events: auto;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.4);
}

.gallery-slide.prev {
    opacity: 0.6;
    transform: translateX(-40%) scale(0.85);
    z-index: 2;
    cursor: pointer;
    pointer-events: auto;
}

.gallery-slide.next {
    opacity: 0.6;
    transform: translateX(40%) scale(0.85);
    z-index: 2;
    cursor: pointer;
    pointer-events: auto;
}

.gallery-slide.prev-2 {
    opacity: 0.3;
    transform: translateX(-70%) scale(0.7);
    z-index: 1;
}

.gallery-slide.next-2 {
    opacity: 0.3;
    transform: translateX(70%) scale(0.7);
    z-index: 1;
}

.gallery-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gallery-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: transform 0.2s ease;
    padding: 0;
}

.gallery-nav-btn:hover {
    transform: scale(1.1);
}

.gallery-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    background-color: var(--c2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.3;
}

.gallery-dot.active {
    background-color: var(--c2);
    width: 16px;
    height: 16px;
    opacity: 1;
}

.info-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 90px;
    width: 100%;
    background-color: var(--c3);
    
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.info-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.info-section-title {
    font-family: var(--title-font);
    font-weight: 400;
    font-size: 64px;
    line-height: 145%;
    text-align: center;
    color: var(--c2);
    margin: 0 0 60px 0;
}

.info-rows-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1047px;
    gap: 60px;
}

.info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 80px; 
}

.info-row-reverse {
    flex-direction: row-reverse;
}

.info-row-normal {
    flex-direction: row;
}

.info-image {
    flex: 1;
    max-width: 537px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    
    -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 95%);
    mask-image: radial-gradient(circle, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 95%);
}

.info-text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 427px;
}

.info-row-desc {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 145%;
    color: var(--c2);
    margin: 0;
    text-align: justify;
}

.bucuram-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: var(--c3);
    padding: 45px 0; 
    gap: 45px; 
}

.bucuram-title {
    font-family: var(--title-font);
    font-weight: 400;
    font-size: 64px;
    line-height: 145%;
    text-align: center;
    color: var(--c2);
    margin: 0;
    
    width: 100%;
    max-width: 1280px;
    padding: 0 135px;
    box-sizing: border-box;
}

.bucuram-pills-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 17px;
    width: 100%;
    margin: 0;
    
    max-width: 1280px;
    padding: 0 20px;
    box-sizing: border-box;
}

.tab-pill {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 178px;
    
    min-height: 67px; 
    height: auto;
    padding: 10px 15px; 
    box-sizing: border-box;

    background: var(--c5);
    border-radius: 61px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.tab-pill.active {
    width: 434px;
    background: var(--c4);
}

.tab-pill.active .pill-text {
    color: var(--c1);
}

.tab-pill:not(.active):hover {
    background: var(--c2);
}

.tab-pill:not(.active):hover .pill-text {
    color: var(--c3);
}

.tab-pill .pill-text {
    font-family: var(--title-font);
    font-weight: 400;
    font-size: 16px;
    color: var(--c2);
    pointer-events: none;
    transition: color 0.3s ease;
    
    white-space: normal; 
    text-align: center;
    line-height: 1.2;
}

.bucuram-content-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;

    max-width: 1280px;
    padding: 0 90px; 
    box-sizing: border-box;
}

.bucuram-content-state {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    gap: 45px; 
}

.bucuram-content-state.active {
    display: flex;
    animation: fadeInTab 0.5s ease-out forwards;
}

.bucuram-image {
    width: 100%;
    max-width: 1105px;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    margin: 0;
}

.bucuram-image img {
    width: 100%;
    height: auto;
    display: block;
}

.bucuram-desc {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 145%;
    text-align: center;
    color: var(--c2);
    margin: 0;

    width: 100%;
    max-width: 1280px;
    padding: 0 45px;
    box-sizing: border-box;
}

.oferta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #121212; 
    padding: 65px 23px;
    gap: 50px;
    
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.oferta-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.oferta-title {
    font-family: var(--title-font);
    font-weight: 400;
    font-size: 64px;
    line-height: 145%;
    text-align: center;
    color: var(--c1);
    margin: 0;
    width: 100%;
    max-width: 1280px;
}

.oferta-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1280px;
    gap: 30px;
}

.oferta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.oferta-card {
    background: #2A2A2A;
    border-radius: 61px;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: background-color 0.3s ease, border-radius 0.3s ease;
    overflow: hidden;
}

.oferta-card.expanded {
    border-radius: 28px;
}

.oferta-header-visible {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.oferta-card-title {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: var(--c1);
    margin: 0;
    transition: color 0.3s ease;
    text-align: left;
}

.oferta-expand-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    flex-shrink: 0;
}

.oferta-expand-icon svg path {
    transition: stroke 0.3s ease;
}

.oferta-body-hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, margin-top 0.3s ease;
}

.oferta-desc {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 145%;
    color: var(--c1);
    margin: 0;
    transition: color 0.3s ease;
    text-align: left;
}

.oferta-card:hover,
.oferta-card.expanded {
    background-color: var(--c1);
}

.oferta-card:hover .oferta-card-title,
.oferta-card.expanded .oferta-card-title {
    color: #2A2A2A;
}

.oferta-card:hover .oferta-expand-icon svg path,
.oferta-card.expanded .oferta-expand-icon svg path {
    stroke: #2A2A2A;
}

.oferta-card:hover .oferta-desc,
.oferta-card.expanded .oferta-desc {
     color: #6A6A6A;
}

.oferta-card.expanded .oferta-body-hidden {
    max-height: 250px;
    opacity: 1;
    margin-top: 15px;
}

.oferta-card.expanded .oferta-expand-icon {
    transform: rotate(180deg);
}

.oferta-card-large {
    width: 100%;
}

.excursii-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    background-color: var(--c3);
    width: 100%;
    
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.excursii-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.excursii-title {
    font-family: var(--title-font);
    font-weight: 400;
    font-size: 64px;
    line-height: 145%;
    text-align: center;
    color: var(--c2);
    margin: 0 0 60px 0;
}

.excursii-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    gap: 40px;
}

.excursii-main-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.excursii-main-img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.excursii-img-mobile {
    display: none !important;
}

.excursii-img-desktop {
    display: block;
}

.excursii-cards-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: stretch;
    width: 100%;
    max-width: 1280px;
    gap: 30px;
}

.excursii-card {
    position: relative;
    flex: 1;
    max-width: 370px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: transparent;
    gap: 20px;
    
    transform-origin: center center;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.excursii-card:hover {
    transform: scale(1.05);
    z-index: 2;
}

.excursii-card-img-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.excursii-card-img-wrapper img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    display: block;
}

.excursii-card-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    width: 100%;
}

.excursii-card-title {
    font-family: var(--title-font);
    font-weight: 400;
    font-size: 32px;
    line-height: 1.1;
    color: var(--c2);
    margin: 0;
}

.excursii-card-desc {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 145%;
    color: var(--c2);
    margin: 0;
}

.program-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 45px 20px;
    width: 100%;
    overflow: hidden;
    
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.program-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.program-title {
    font-family: var(--title-font);
    font-weight: 400;
    font-size: 64px;
    line-height: 145%;
    text-align: center;
    color: var(--c1);
    margin: 0 0 45px 0;
}

.program-carousel-wrapper {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.program-track {
    position: relative;
    width: 100%;
    max-width: 950px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.program-slide {
    position: absolute;
    width: 55%;
    max-width: 650px;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
    transform: translateX(0) scale(0.6);
    z-index: 1;
    pointer-events: none;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
}

.program-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.program-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 3;
    pointer-events: auto;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.4);
}

.program-slide.prev { opacity: 0.6; transform: translateX(-40%) scale(0.85); z-index: 2; cursor: pointer; pointer-events: auto; }
.program-slide.next { opacity: 0.6; transform: translateX(40%) scale(0.85); z-index: 2; cursor: pointer; pointer-events: auto; }
.program-slide.prev-2 { opacity: 0.3; transform: translateX(-70%) scale(0.7); z-index: 1; }
.program-slide.next-2 { opacity: 0.3; transform: translateX(70%) scale(0.7); z-index: 1; }

.program-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.program-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: transform 0.2s ease;
    padding: 0;
}

.program-nav-btn:hover {
    transform: scale(1.1);
}

.program-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.program-dot {
    width: 12px;
    height: 12px;
    background-color: var(--c1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.3;
}

.program-dot.active {
    background-color: var(--c1);
    width: 16px;
    height: 16px;
    opacity: 1;
}

.dispo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #121212; 
    padding: 80px 20px;
    gap: 50px;
    
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.dispo-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.dispo-title {
    font-family: var(--title-font);
    font-weight: 400;
    font-size: 60px;
    line-height: 145%;
    text-align: center;
    color: var(--c1);
    margin: 0;
    width: 100%;
    max-width: 1280px;
}

.dispo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1280px;
    gap: 60px;
}

.dispo-image-wrapper {
    flex: 1;
    max-width: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dispo-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
}

.dispo-list-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
}

.dispo-items-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 22px;
}

.dispo-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 30px; 
    width: 100%;
}

.dispo-item-name {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 21px;
    line-height: 145%;
    text-align: left;
    color: #C5C5C5;
    min-width: 250px;
}

.dispo-bar-track {
    width: 269px;
    height: 17px;
    background: #2A2A2A;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.dispo-bar-fill {
    height: 100%;
    border-radius: 34px;
    transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.dispo-last-updated {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 145%;
    text-align: center;
    color: rgba(255, 255, 255, 0.35); 
    width: 100%;
}

.contact-section-wrapper {
    position: relative;
    width: 100%;
    background-color: var(--c3); 
    padding: 46px 0; 
}

.contact-inner {
    width: 100%;
    max-width: 1280px; 
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-title {
    font-family: var(--title-font);
    font-weight: 400;
    font-size: 47px;
    line-height: 145%;
    text-align: center;
    color: var(--c2);
    width: 100%;
    margin-top: 0;
    margin-bottom: 43px; 
}

.package-selector-pills {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 17px; 
    width: 100%;
    margin-bottom: 50px; 
}

.pkg-pill {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 178px;
    height: 67px;
    background: var(--c5);
    border-radius: 61px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.pkg-pill.active {
    width: 434px;
    background: var(--c4);
}

.pkg-pill.active .pill-text {
    color: var(--c1);
}

.pkg-pill:not(.active):hover {
    background: var(--c2);
}

.pkg-pill:not(.active):hover .pill-text {
    color: var(--c3);
}

.pkg-pill .pill-text {
    font-family: var(--title-font);
    font-weight: 400;
    font-size: 16px;
    color: var(--c2);
    white-space: nowrap;
    pointer-events: none;
}

.contact-content-row {
    display: flex;
    flex-direction: row;
    align-items: stretch; 
    justify-content: center;
    gap: 76px; 
    width: 100%;
    max-width: 1280px;
    padding: 40px; 
    box-sizing: border-box;
}

.cards-wrapper-left {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 670px;
    flex: 1; 
}

.package-info-card {
    display: none; 
    position: relative;
    width: 100%; 
    height: 100%; 
    min-height: 707px; 
    background-color: #1C1C1C;
    border-radius: 12px;
    overflow: hidden;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.package-info-card.active {
    display: flex;
    flex: 1; 
    opacity: 1;
    transform: translateY(0);
}

.card-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0; 
    top: 0;
    z-index: 1;
    background: var(--card-bg);
    background-size: cover; 
    background-position: center center; 
    pointer-events: none;
}

.card-content-inner {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%; 
    min-height: 100%; 
    box-sizing: border-box; 
    padding: 50px 40px; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly; 
    gap: 15px; 
}

.card-title {
    font-family: var(--title-font);
    font-weight: 400;
    font-size: 49px;
    line-height: 145%;
    color: var(--c1);
    margin: 0;
}

.card-icons-row {
    display: flex;
    gap: 10px;
}

.card-divider {
    width: 322px;
    height: 1px;
    background-color: var(--c1);
    opacity: 0.5; 
}

.card-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 18px; 
    width: 100%;
}

.card-benefit-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-mark {
    width: 24px;
    display: flex;
    justify-content: center;
}

.card-benefit-text {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--c1);
}

.card-price {
    font-family: var(--title-font);
    font-weight: 400;
    font-size: 21px;
    color: var(--c1);
    margin: 0; 
}

.contact-form-container {
    flex: 1;
    width: 100%;
    max-width: 500px; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    gap: 20px;
}

.form-section-title {
    font-family: var(--title-font);
    font-weight: 400;
    font-size: 38px;
    line-height: 1;
    color: var(--c2);
    margin: 0 0 10px 0;
    text-align: center; 
    width: auto; 
    align-self: center; 
}

.custom-form-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0; 
    width: 100%;
    position: relative; 
    margin-bottom: 25px; 
}

.custom-form-row br {
    display: none !important;
}

.custom-form-row p {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
}

.custom-label {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 18px; 
    color: #6F7482;
    margin: 0 !important; 
    padding: 0 0 4px 0 !important; 
    line-height: 1 !important; 
    text-align: left;
    width: auto;
}

.custom-input-pill {
    position: relative;
    width: 100%;
    height: 56px; 
    background: var(--c5);
    border-radius: 65px;
    display: flex;
    align-items: center;
    padding: 0 20px; 
    transition: background 0.3s ease;
}

.custom-input-pill input, 
.custom-input-pill select,
.custom-input-pill textarea {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 145%;
    color: var(--c2); 
    padding: 0;
    margin: 0;
    transition: color 0.3s ease;
}

.custom-input-pill input::placeholder {
    color: var(--c2);
    opacity: 1;
    transition: color 0.3s ease;
}

.custom-input-pill select {
    color: var(--c2);
    cursor: pointer;
}

.custom-input-pill select option {
    background-color: var(--c5);
    color: var(--c2);
}

.custom-input-pill:hover,
.custom-input-pill:focus-within {
    background: var(--c2); 
}

.custom-input-pill:hover input,
.custom-input-pill:focus-within input,
.custom-input-pill:hover select,
.custom-input-pill:focus-within select {
    color: var(--c3); 
}

.custom-input-pill:hover input::placeholder,
.custom-input-pill:focus-within input::placeholder {
    color: var(--c3);
}

.form-submit-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center; 
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.form-submit-wrapper input[type="submit"] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    width: 132px;
    height: 47px;
    background: var(--c2);
    border-radius: 51px;
    border: none;
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 145%;
    text-align: center;
    color: var(--c3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-wrapper input[type="submit"]:hover {
    background: var(--c4); 
    color: var(--c1);
}

.custom-input-pill .wpcf7-form-control-wrap {
    position: static; 
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.contact2-section {
    position: relative;
    background-color: var(--c3);
    
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

    padding: 46px 0; 
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.contact2-section .contact-form-container {
    width: 100%;
    max-width: 500px;
    padding: 0 20px; 
    box-sizing: border-box;
}

span.wpcf7-not-valid-tip {
    position: absolute;
    top: calc(100% + 5px); 
    left: 20px; 
    font-size: 13px;
    color: #ff4d4d; 
    white-space: nowrap;
}

.wpcf7 form .wpcf7-response-output {
    margin-top: 30px;
    border-radius: 12px;
    border: none;
    padding: 15px;
    text-align: center;
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    background-color: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
}

.site-footer {
    height: auto !important;
    min-height: max-content;
    background-color: #0A0A0A;
    padding: 80px 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05); 
}

.footer-container {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.footer-brand-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 350px;
}

.footer-logo {
    display: block;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-copyright,
.footer-contact {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 150%;
    color: #8C8C8C; 
    margin: 0;
}

.footer-contact a {
    color: #8C8C8C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.footer-links-wrapper {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column-title {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #FFFFFF;
    margin: 0;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-links-list li {
    margin: 0;
    padding: 0;
}

.footer-links-list a {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #8C8C8C;
    text-decoration: none;
    transition: color 0.3s ease;
    
    display: inline-block;
    white-space: normal;
    line-height: 145%;
    max-width: 85px;
}

.footer-links-list a:hover {
    color: #FFFFFF;
}


.hidden-link {
    display: none;
}

.terms-wrapper {
    margin-bottom: 30px;
    width: 100%;
}

.terms-wrapper .wpcf7-list-item {
    margin: 0;
    padding: 0;
}

.terms-wrapper label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    margin: 0;
}

.terms-wrapper input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background-color: var(--c5);
    border: 1px solid #6F7482;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    margin: 2px 0 0 0;
    transition: all 0.3s ease;
}

.terms-wrapper input[type="checkbox"]:checked {
    background-color: var(--c4);
    border-color: var(--c4);
}

.terms-wrapper input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 7px;
    width: 5px;
    height: 10px;
    border: solid var(--c1);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.terms-wrapper .wpcf7-list-item-label {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--c2);
}

.terms-wrapper .wpcf7-list-item-label a {
    color: var(--c2);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.terms-wrapper .wpcf7-list-item-label a:hover {
    color: var(--c4);
}

.terms-wrapper span.wpcf7-not-valid-tip {
    position: relative; 
    top: 5px;
    left: 0;
    margin-left: 34px;
}

.legal-page-wrapper {
    width: 100%;
    padding: 180px 20px 80px 20px;
    background-color: #000000;
    min-height: calc(100vh - 229px);
    display: flex;
    justify-content: center;
}

.legal-page-container {
    width: 100%;
    max-width: 800px;
    color: #FFFFFF;
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

.legal-page-container .legal-title {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 42px;
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    text-transform: none;
}

.legal-content-editor .legal-section {
    margin-bottom: 40px;
}

.legal-content-editor h2 {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 22px;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content-editor p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #FFFFFF; 
}

.legal-content-editor ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.legal-content-editor li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #FFFFFF; 
}

.legal-content-editor a {
    color: #66b3ff; 
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.legal-content-editor a:hover {
    opacity: 0.8;
}

@keyframes fadeInTab {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 1280px) {
    .hero-title-component { display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 0px; width: 1130.23px; height: auto; min-height: 139.61px; }
    .hero-main-heading-row { gap: 10px; }
    .hero-top-subtitle { font-size: 38px; }
    .hero-logo-icon { flex: none; order: 0; width: 160.34px; height: 139.61px; }
    .hero-logo-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
    .hero-dynamic-title { flex: none; order: 1; font-size: 110px; white-space: nowrap; }
    .hero-image-component { height: 1070px; background-position: top center; background-size: 1745.28px auto; }
    .hero-content-block { width: 1018px; max-width: 1018px; margin-top: -135px; padding-bottom: 50px; }
    .hero-subtitle { font-size: 64px; }
    .hero-description { font-size: 20px; width: 100%; }
}

@media (min-width: 800px) {
    .keypoints-container { opacity: 0; transform: translateY(30px); transition: opacity 1s ease-out, transform 1s ease-out; }
    .keypoints-container.in-view { opacity: 1; transform: translateY(0); }
    .keypoint-card { opacity: 1; }
}

@media (min-width: 800px) and (max-width: 1279px) {
    .hero-title-component { display: flex; flex-direction: column; justify-content: center; align-items: center; width: 100%; padding: 0 20px; height: auto; }
    .hero-main-heading-row { gap: 10px; }
    .hero-top-subtitle { font-size: 28px; }
    .hero-logo-icon { width: 130px; height: auto; }
    .hero-logo-icon img { width: 100%; height: auto; }
    .hero-dynamic-title { font-size: 65px; white-space: nowrap; }
    .hero-image-component { height: 800px; background-size: cover; background-position: top center; }
    .hero-content-block { width: 90%; margin-top: -200px; padding-bottom: 40px; }
    .hero-subtitle { font-size: 45px; }
    .hero-description { font-size: 18px; }
    .keypoints-container { gap: 40px; padding: 0 20px; }
    .keypoint-card { width: 45%; }
}

@media (max-width: 1279px) {
    .nav-buttons-container.desktop-only { display: none; }
    .site-header { height: 74px; padding: 0; }
    .header-inner { padding: 0; width: 100%; height: 100%; }
    .logo-container { position: absolute; width: 62px; height: 40px; left: 25px; top: 50%; transform: translateY(-50%); margin: 0; padding: 0; }
    .logo-container svg { width: 100%; height: 100%; }
    .mobile-toggle { display: flex; justify-content: center; align-items: center; background: none; border: none; position: absolute; right: 25px; top: 50%; transform: translateY(-50%); z-index: 101; cursor: pointer; padding: 0; transition: opacity 0.3s ease; }
    body.menu-open .mobile-toggle { opacity: 0; pointer-events: none; }
    .mobile-menu-overlay { display: flex; flex-direction: column; align-items: flex-start; position: fixed; top: 74px; left: 0; width: 100%; height: calc(100vh - 74px); background-color: #201F1F; padding-top: 40px; padding-left: 25px; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.3s ease; z-index: 99; }
    .mobile-menu-overlay.active { opacity: 1; visibility: visible; transform: translateY(0); }
    .mobile-nav-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; padding-inline-start: 0; }
    .mobile-nav-links li { margin: 0; padding: 0; }
    .mobile-nav-links li a { font-family: 'Brother 1816', 'Outfit', sans-serif; font-weight: 500; font-size: 20px; line-height: 145%; color: #FFFFFF; text-decoration: none; display: inline-block; position: relative; padding-bottom: 2px; opacity: 0.75; transition: opacity 0.1s ease, text-shadow 0.1s ease; }
    .mobile-nav-links li a:active, .mobile-nav-links li a:focus { opacity: 1; }
    .mobile-nav-links li a::after { content: ''; display: block; width: 100%; height: 2px; border-radius: 1px; margin-top: 2px; opacity: 0; transform: scaleX(0); transform-origin: left; transition: opacity 0.1s ease, transform 0.2s ease; }
    .mobile-nav-links li:nth-child(1) a:active, .mobile-nav-links li:nth-child(1) a:focus { text-shadow: 0px 0px 8px #00FFBB; }
    .mobile-nav-links li:nth-child(1) a::after { background-color: #00FFBB; }
    .mobile-nav-links li:nth-child(1) a:active::after, .mobile-nav-links li:nth-child(1) a:focus::after { opacity: 1; transform: scaleX(1); }
    .mobile-nav-links li:nth-child(2) a:active, .mobile-nav-links li:nth-child(2) a:focus { text-shadow: 0px 0px 8px #F53893; }
    .mobile-nav-links li:nth-child(2) a::after { background-color: #F53893; }
    .mobile-nav-links li:nth-child(2) a:active::after, .mobile-nav-links li:nth-child(2) a:focus::after { opacity: 1; transform: scaleX(1); }
    .mobile-nav-links li:nth-child(3) a:active, .mobile-nav-links li:nth-child(3) a:focus { text-shadow: 0px 0px 8px #8A38F5; }
    .mobile-nav-links li:nth-child(3) a::after { background-color: #8A38F5; }
    .mobile-nav-links li:nth-child(3) a:active::after, .mobile-nav-links li:nth-child(3) a:focus::after { opacity: 1; transform: scaleX(1); }
    .mobile-signup-btn { margin-top: 25px; width: 130px; height: 49px; align-self: flex-start; opacity: 1; }
    .site-footer { height: 229px; }
    .footer-logo { width: 97px; height: 63px; left: 53px; bottom: auto; top: 50%; transform: translateY(-50%); }
    .contact-content-row { flex-direction: column; align-items: center; gap: 50px; padding: 20px; }
    .cards-wrapper-left { width: 100%; max-width: 500px; flex: none; }
    .package-info-card { width: 100%; height: auto; min-height: 550px; }
    .contact-form-container { width: 100%; max-width: 500px; }
    .unic-cards-container {
        flex-wrap: wrap;
    }
    .unic-card {
        min-width: 320px;
    }

    .dispo-section {
        padding: 50px 20px;
        gap: 30px;
    }

    .dispo-title {
        font-size: 32.5px;
    }

    .dispo-container {
        flex-direction: column;
        gap: 30px;
    }

    .dispo-image-wrapper {
        display: none;
    }

    .dispo-list-wrapper {
        width: 100%;
        align-items: center;
        gap: 30px;
    }

    .dispo-items-list {
        gap: 25px;
    }

    .dispo-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .dispo-item-name {
        text-align: left;
        font-size: 18px;
        min-width: auto;
    }

    .dispo-bar-track {
        width: 100%;
    }

    .dispo-last-updated {
        text-align: center;
        font-size: 14px;
        margin-top: 10px;
    }

    .gallery-track { height: 320px; }
    .gallery-slide { width: 70%; }

    .program-track { height: 320px; }
    .program-slide { width: 70%; }
}

@media (max-width: 799px) {
    .journey-hero-wrapper { padding-top: 135px; }
    .hero-title-component { display: block; width: 307px; height: 175px; position: relative; margin: 0 auto; }
    .hero-logo-icon { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 160px; height: auto; }
    .hero-logo-icon img { width: 100%; height: auto; object-fit: contain; }
    .hero-dynamic-title { position: absolute; top: 85%; left: 50%; transform: translateX(-50%); width: 100%; font-size: 42px; line-height: 1; white-space: nowrap; }
    .hero-image-component { height: 600px; margin-top: 30px; background-size: cover; background-position: top center; }
    .hero-content-block { width: 100%; max-width: 374px; padding: 0 10px; margin-top: -185px; padding-bottom: 30px; }
    .hero-subtitle { font-size: 37px; margin-bottom: 13px; }
    .hero-description { font-size: 16px; margin-bottom: 13px; }
    .keypoints-container { opacity: 1; transform: none; flex-direction: column; align-items: center; gap: 40px; }
    .keypoint-card { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out var(--anim-delay), transform 0.6s ease-out var(--anim-delay); width: 100%; max-width: 382px; }
    .keypoint-card.in-view { opacity: 1; transform: translateY(0); }
    .kp-title { font-size: 24px; line-height: 1.1; }
    .kp-desc { font-size: 16px; padding: 0 20px; }
    .journey-banner-wrapper { padding: 45px 0; }
    .banner-img-desktop { display: none !important; }
    .banner-img-mobile { display: block !important; }
    .contact-section-wrapper { padding: 50px 0; }
    .contact-title { font-size: 24px; margin-bottom: 30px; }
    .package-selector-pills { flex-direction: row; justify-content: space-between; gap: 6px; width: 100%; margin-bottom: 40px; }
    .pkg-pill, .pkg-pill.active { width: 100% !important; flex: 1; height: 40px; }
    .pkg-pill .pill-text { font-size: 11px;}
    .package-info-card { min-height: 485px; }
    .card-content-inner { padding: 30px 20px; gap: 15px; }
    .card-title { font-size: 32px; }
    .card-icons-row svg { width: 20px; height: auto; }
    .card-benefit-text { font-size: 14px; }
    .card-price { font-size: 20px; }
    .form-section-title { font-size: 24px; margin-bottom: 20px; }
    .custom-label { font-size: 15px; }
    .custom-input-pill { height: 48px; padding: 0 15px; }
    .custom-input-pill input, .custom-input-pill select, .custom-input-pill textarea { font-size: 15px; }
    span.wpcf7-not-valid-tip { font-size: 11px; left: 15px; }
    .obiective-section {
        padding: 50px 23px;
        gap: 30px;
    }

    .obiective-title {
        font-size: 40px;
    }

    .obiective-cards-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
    }

    .obiectiv-card {
        width: 100%;
        padding: 15px 20px;
        border-radius: 40px;
    }

    .obiectiv-card-title {
        font-size: 16px;
    }

    .obiective-bottom-text {
        font-size: 16px;
        padding: 0 0px;
    }

    .unic-section {
        padding: 50px 20px;
    }

    .unic-title {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .unic-cards-container {
        flex-direction: column;
        align-items: center;
        gap: 29px;
    }

    .unic-card {
        width: 100%;
        max-width: 382px;
        min-height: 400px;
    }

    .unic-card-title {
        font-size: 24px;
    }

    .info-section {
        padding: 80px 20px;
    }

    .info-section-title {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .info-rows-container {
        gap: 80px;
    }

    .info-row,
    .info-row-reverse,
    .info-row-normal {
        flex-direction: column !important; 
        align-items: center;
        gap: 30px;
    }

    .info-text-content {
        align-items: center;
        max-width: 100%;
    }

    .info-row-desc {
        font-size: 16px;
        text-align: center;
    }

    .bucuram-section {
        padding: 45px 17px;
        gap: 15px;
    }

    .bucuram-title {
        font-size: 40px;
        margin: 0;
        padding: 0 0px;
    }

    .bucuram-pills-wrapper {
        justify-content: space-between;
        gap: 6px;
        margin: 0;
        padding: 0 0px;
    }

    .tab-pill, .tab-pill.active {
        width: 100% !important;
        flex: 1;
        
        min-height: 40px;
        height: auto;
        padding: 5px 10px;
    }

    .tab-pill .pill-text {
        font-size: 11px;
    }

    .bucuram-content-container {
        padding: 0px 0px;
    }

    .bucuram-content-state {
        gap: 15px;
    }

    .bucuram-image {
        max-width: 334px;
        height: auto;
    }

    .bucuram-desc {
        font-size: 16px;
        padding: 0 0px;
    }

    .oferta-section {
        padding: 50px 23px;
        gap: 30px;
    }

    .oferta-title {
        font-size: 40px;
    }

    .oferta-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .oferta-container {
        gap: 15px;
    }

    .oferta-card {
        padding: 15px 20px;
        border-radius: 40px;
    }

    .oferta-card-title {
        font-size: 16px;
    }

    .oferta-desc {
        font-size: 14px;
    }

    .hero-top-subtitle { 
        position: absolute; 
        top: calc(85% + 45px); 
        left: 50%; 
        transform: translateX(-50%); 
        width: 100%; 
        font-size: 22px; 
        margin: 0; 
    }

    .site-footer {
        padding: 80px 40px;
    }

    .footer-container {
        flex-direction: column;
        gap: 50px;
    }

    .footer-brand-column {
        align-items: flex-start;
        max-width: 100%;
        text-align: left;
    }

    .footer-links-wrapper {
        flex-direction: row;
        justify-content: flex-start;
        width: 100%;
        gap: 30px;
        flex-wrap: wrap; 
    }

    .footer-column {
        min-width: auto;
        gap: 10px;
    }

    .legal-page-wrapper {
        padding: 130px 20px 50px 20px;
    }
    .legal-page-container .legal-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .legal-content-editor h2 {
        font-size: 20px;
    }
    .legal-content-editor p, 
    .legal-content-editor li {
        font-size: 15px;
    }

    .gallery-section { padding: 60px 20px; }
    .gallery-title { font-size: 40px; margin-bottom: 5px; }
    .gallery-desc { font-size: 16px; margin-bottom: 55px}
    .gallery-track { height: 220px; }
    .gallery-slide { width: 85%; }
    .gallery-slide.prev { transform: translateX(-25%) scale(0.85); opacity: 0.4; }
    .gallery-slide.next { transform: translateX(25%) scale(0.85); opacity: 0.4; }

    .program-section { padding: 60px 20px; }
    .program-title { font-size: 40px; margin-bottom: 30px; }
    .program-track { height: 220px; }
    .program-slide { width: 85%; }
    .program-slide.prev { transform: translateX(-25%) scale(0.85); opacity: 0.4; }
    .program-slide.next { transform: translateX(25%) scale(0.85); opacity: 0.4; }

    .excursii-section {
        padding: 50px 15px;
    }
    
    .excursii-title {
        font-size: 36px;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .excursii-content-wrapper {
        display: flex;
        flex-direction: row; 
        align-items: stretch;
        gap: 15px;
        width: 100%;
    }

    .excursii-main-img-wrapper {
        flex: 0 0 30%;
        max-width: 130px;
        display: flex;
        align-items: center; 
        justify-content: center;
    }

    .excursii-img-desktop {
        display: none !important;
    }

    .excursii-img-mobile {
        display: block !important;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .excursii-cards-container {
        flex: 1;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
        gap: 30px;
        min-width: 0; 
    }

    .excursii-card {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        min-height: 0;
    }

    .excursii-card-img-wrapper {
        width: 100%;
        flex: 1;
        min-height: 0;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
    }

    .excursii-card-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .excursii-card-text {
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 20px;
    }

    .excursii-card-title {
        font-size: 24px;
        line-height: 1.1;
    }
    
    .excursii-card-desc {
        font-size: 16px;
        line-height: 1.3;
    }

    @media (max-width: 799px) {
        .contact2-section {
            padding: 50px 0; 
        }
        
        .contact2-section .contact-form-container {
            padding: 0 20px;
        }
    }
}

.page-journeys {
    width: 100%;
    background-color: #000000;
    position: relative;
}

.journeys-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 147.5px 20px 80px; 
}

.journeys-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.journeys-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journeys-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 555px;
}

.journeys-title {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 67px;
    line-height: 1.1;
    letter-spacing: -0.06em;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
}

.journeys-subtitle {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: -0.005em;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
}

.journeys-desc {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: -0.005em;
    color: #ffffff8c;
    margin: 0;
    max-width: 950px;
    text-align: center;
}

.journeys-hero-btn {
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 10px; 
    padding: 0 15px;
    font-size: 25px;
    width: 160px;
    height: 42.5px;
    border: 1px solid #FFFFFF;
    background-color: transparent;
    border-radius: 51px;
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.journeys-hero-btn:hover {
    background-color: #FFFFFF;
    color: #201F1F;
}

.hero-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnimation 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.2s;
}

.journeys-about {
    width: 100%;
    background-color: #1D1D1D;
    padding: 27px 55px; 
    display: flex;
    justify-content: center;

    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.journeys-about.in-view {
    opacity: 1;
    transform: translateY(0);
}

.journeys-about-container {
    width: 100%;
    max-width: 1168px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 58px;
}

.journeys-about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 555px;
    height: 507px;
    border-radius: 12px;
    overflow: hidden;
    flex: none;
}

.journeys-about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.journeys-about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    max-width: 555px;
    flex: none;
}

.journeys-about-title {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 72px;
    line-height: 0.86;
    letter-spacing: -0.09em;
    color: #FFFFFF;
    margin: 0;
    display: flex;
    align-items: center;
}

.journeys-about-desc {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: -0.005em;
    color: #C2C2C2;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.journeys-about-desc p {
    margin: 0;
}

.title-mobile {
    display: none; 
}

.title-desktop {
    display: flex; 
}

.journeys-list {
    width: 100%;
    padding: 57px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000000;

    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.journeys-list.in-view {
    opacity: 1;
    transform: translateY(0);
}

.journeys-list-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
    max-width: 1280px;
    text-align: center;
}

.journeys-list-title {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 110px;
    line-height: 1;
    letter-spacing: -0.06em;
    color: #FFFFFF;
    margin: 0;
}

.journeys-list-desc {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.45;
    letter-spacing: -0.005em;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    max-width: 980px;
}

.journeys-cards-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px; 
    width: 100%;
    max-width: 1185px;
    margin: 60px auto 0;
}

.journey-card {
    position: relative;
    width: 100%;
    height: 465px;
    border-radius: 14px;
    background-color: #1D1D1D;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 3), box-shadow 0.4s ease;
}

.journey-card-bg {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 43.55%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.journey-card-bg::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(270deg, #1D1D1D 0%, rgba(29, 29, 29, 0) 100%);
    z-index: 2;
}

.journey-card-content {
    position: relative;
    z-index: 3;
    width: 48%;
    margin-left: 50%;
    display: flex;
    flex-direction: column;
}

.journey-card-header {
    display: flex;
    flex-direction: column;
}

.journey-card-title {
    font-family: var(--card-font); 
    font-size: 49px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.45;
    letter-spacing: -0.005em;
    margin: 0;
}

.journey-card-location {
    display: flex;
    align-items: center;
    color: var(--card-color);
    
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.location-text {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: -0.005em;
}

.icon-location {
    flex-shrink: 0;
}

.journey-card-desc {
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.45;
    letter-spacing: -0.005em;
    margin-top: 32px;
}

.journey-card-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
}

.journey-card-info {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    padding: 9px 15px;
    gap: 34px;
    border: 1px solid #FFFFFF;
    border-radius: 33px;
    
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.45;
    color: #FFFFFF;
    letter-spacing: -0.005em;
    white-space: nowrap;
}

.journey-card-btn {
    box-sizing: border-box;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 30px;
    min-height: 48px;
    background: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 51px;
    
    font-family: 'Brother 1816', 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 23px;
    line-height: 1;
    letter-spacing: -0.005em;
    color: #0A0909;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.journey-card-btn:hover {
    background-color: var(--card-color);
    border-color: var(--card-color);
    color: #FFF;
}

@keyframes fadeUpAnimation {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 799px) {
    .journeys-hero {
        min-height: 80vh; 
        padding: 100px 20px 60px;
    }

    .journeys-title {
        font-size: 65px;
    }

    .journeys-subtitle {
        font-size: 20px;
    }

    .journeys-desc {
        font-size: 16px;
    }

    .journeys-hero-btn {
        padding: 0 15px;
        font-size: 25px;
    }

    .journeys-about {
        padding: 27px 10px;
    }

    .journeys-about-container {
        flex-direction: column;
        gap: 40px;
        max-width: 370px;
    }

    .journeys-about-image-wrapper {
        max-width: 100%;
        height: 492px;
    }

    .journeys-about-image-wrapper::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
        pointer-events: none;
    }

    .journeys-about-content {
        align-items: center;
        gap: 0;
    }

    .title-desktop {
        display: none;
    }

    .title-mobile {
        display: flex; 
        position: absolute;
        bottom: 20px;
        left: 0;
        width: 100%;
        justify-content: center;
        text-align: center;
        z-index: 2;
        
        font-size: 72px;
        line-height: 0.88;
        letter-spacing: -0.06em;
    }

    .journeys-about-desc {
        font-size: 14px;
        text-align: center;
    }

    .journeys-list {
        padding: 60px 20px;
    }

    .journeys-list-title {
        font-size: 60px;
    }

    .journeys-list-desc {
        font-size: 14px;
    }

    .journeys-cards-container {
        gap: 30px;
        margin: 40px auto 0;
    }

    .journey-card {
        flex-direction: column;
        height: 625px;
        transition: box-shadow 0.4s ease; 
        align-items: flex-start;
    }

    .journey-card-bg {
        width: 100%;
        height: 370px;
        position: absolute;
        left: 0;
        transition: filter 0.4s ease;
        z-index: 1;
    }

    .journey-card-bg::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(29, 29, 29, 0) 0%, rgba(29, 29, 29, 0) 60%, #1D1D1D 100%);
        z-index: 2;
    }

    .journey-card-bg::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(29, 29, 29, 0) 0%, rgba(29, 29, 29, 0.9) 50%, #1D1D1D 100%);
        z-index: 3;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .journey-card-content {
        width: 100%;
        height: 100%;
        margin-left: 0;
        padding: 16px 10px;
        justify-content: flex-end;
        box-sizing: border-box;
    }

    .journey-card-header {
        width: 100%;
    }

    .journey-card-title {
        font-size: 34px;
        width: 100%;
    }

    .journey-card-location,
    .journey-card-desc,
    .journey-card-info {
        max-height: 0;
        opacity: 0;
        margin: 0;
        padding: 0;
        overflow: hidden;
        border: none;
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .journey-card-footer {
        width: 100%;
        margin-top: 25px;
        justify-content: flex-end;
    }

    .journey-card-btn {
        padding: 12px 18px;
        min-height: 45px;
        font-size: 19px;
        width: auto;
    }

    .journey-card.is-active {
        transform: none;
        box-shadow: 0px 4px 25.5px 2px var(--card-color);
    }

    .journey-card.is-active .journey-card-bg::before {
        opacity: 1; 
    }

    .journey-card.is-active .journey-card-location {
        max-height: 55px; 
        opacity: 1;
        margin-top: 20px;
    }

    .journey-card.is-active .journey-card-desc {
        max-height: 200px;
        opacity: 1;
        margin-top: 20px;
        font-size: 16px;
    }

    .journey-card.is-active .journey-card-info {
        max-height: 45px;
        opacity: 1;
        border: 1px solid #FFFFFF; 
        padding: 10px 10px;
        gap: 12px;
        font-size: 18px;
    }

    .journey-card.is-active .journey-card-footer {
        justify-content: space-between;
    }

    .journey-card.is-active .location-text {
        font-size: 18px;
    }
}

@media (min-width: 800px) {
    .journey-card:hover {
        transform: scale(1.02);
        box-shadow: 0px 4px 24px 7px var(--card-color);
    }

    .journey-card:hover .journey-card-location {
        max-height: 52px;
        opacity: 1;
        margin-top: 20px;
    }

    .journey-card:hover .journey-card-desc {
        margin-top: 20px;
    }
}
