* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
}

/* Topbar */
.topbar {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 100;
    background: #0a0a0a;
    transition: background 0.3s ease;
}

.topbar--scrolled {
    background: transparent;
}

.topbar__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s ease, background 0.3s ease, border-radius 0.3s ease;
}

.topbar--scrolled .topbar__inner {
    padding: .5rem 1rem;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    margin-top: 0.5rem;
}

.topbar--scrolled .topbar__menu-item a {
    font-size: 0.9375rem;
}

.topbar--scrolled .topbar__lang {
    font-size: 0.9375rem;
}

.topbar__logo img {
    transition: height 0.3s ease;
}

.topbar--scrolled .topbar__logo img {
    height: 32px;
}

.topbar__logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    animation: slideFromLeft 0.6s ease-out both;
}

.topbar__logo img {
    height: 45px;
    width: auto;
}

.topbar__nav {
    margin-left: auto;
    animation: slideFromRight 0.6s ease-out 0.2s both;
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.topbar__menu-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s, font-size 0.3s;
}

.topbar__menu-item a:hover {
    color: #fff;
}

.topbar__lang {
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    margin-left: 2rem;
    animation: slideFromRight 0.6s ease-out 0.3s both;
    transition: font-size 0.3s;
}

/* Burger button - hidden on desktop */
.topbar__burger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
}

.topbar__burger svg line {
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.topbar__burger--active svg line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.topbar__burger--active svg line:nth-child(2) {
    opacity: 0;
}

.topbar__burger--active svg line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a0a0a;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu--open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__nav {
    padding: 2rem 1.5rem;
}

.mobile-menu__nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu__nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__nav ul li a {
    display: block;
    padding: 1.25rem 0;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.mobile-menu__nav ul li a:hover {
    color: #fff;
}

/* Body lock when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Mobile styles */
@media (max-width: 768px) {
    .topbar__nav {
        display: none;
    }

    .topbar__burger {
        display: block;
    }

    .mobile-menu {
        display: block;
    }

    .topbar__lang {
        margin-left: auto;
    }

    .topbar--scrolled .topbar__inner {
        margin-top: 0;
        border-radius: 0;
    }
}

/* Hero */
.hero {
    width: 100%;
    height: 100vh;
    background-color: #0a0a0a;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__inner {
    max-width: 1100px;
    margin: 0 auto;
    margin-bottom: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.hero__logo {
    max-height: 90px;
    width: auto;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out both;
}

.hero__title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    padding: 0.75rem 1.25rem;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero__subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-weight: 400;
    max-width: 480px;
    line-height: 1.7;
    padding: 0.625rem 1rem;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 6px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.hero__glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: 75%;
    background: radial-gradient(ellipse at center bottom, rgba(30, 100, 200, 0.3) 0%, rgba(30, 100, 200, 0) 70%);
    z-index: 0;
}

.hero__particles {
    position: absolute;
    bottom: 200px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 700px;
    height: 60%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero__particles canvas {
    width: 100%;
    height: 100%;
}

.hero__arc-wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: 1100px;
    height: 350px;
    z-index: 0;
}

.hero__arc {
    position: absolute;
    bottom: -100px;
    left: calc(50% - 1200px / 2);
    width: 1200px;
    height: 800px;
    overflow: hidden;
    flex: none;
    z-index: 0;
}

.hero__arc-left {
    position: relative;
    width: 600px;
    height: 100%;
    background: linear-gradient(90deg, #0a0a0a, #0a0a0a00);
    flex: none;
    overflow: hidden;
    z-index: 2;
}

.hero__arc-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 600px;
    height: 100%;
    background: linear-gradient(270deg, #0a0a0a, #0a0a0a00);
    flex: none;
    overflow: hidden;
    z-index: 2;
}

.hero__arc-white {
    position: absolute;
    bottom: -662px;
    left: -443px;
    right: -443px;
    height: 955px;
    background: linear-gradient(180deg, #fff, #0a0a0a00);
    border-radius: 100%;
}

.hero__arc-black {
    position: absolute;
    bottom: -668px;
    left: -521px;
    right: -521px;
    height: 956px;
    aspect-ratio: 2.346820809248555 / 1;
    background-color: #0a0a0a;
    border-radius: 100%;
    box-shadow: inset 0 2px 20px #fff, 0 -10px 50px 1px #ffffff7d;
}

/* Main Content */
.main-content {
    width: 100%;
    background: #fff;
}

/* Tours Section */
.tours {
    width: 100%;
    padding: 4rem 1rem;
}

.tours__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.tours__title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #0a0a0a;
    text-align: center;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out both;
}

.tours__intro {
    max-width: 700px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.tours__row {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e5e5e5;
}

.tours__row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tours__image {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    animation: slideInLeft 0.8s ease-out both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tours__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tours__image img:hover {
    transform: translateY(-5px);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.25),
        0 25px 70px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.tours__content {
    flex: 0 0 66.666%;
    max-width: 66.666%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: slideInRight 0.8s ease-out 0.2s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tours__tour-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tours__tour-subtitle {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tours__details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 2rem;
}

.tours__detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #333;
}

.tours__detail svg {
    color: #0a0a0a;
    flex-shrink: 0;
}

.tours__detail strong {
    color: #0a0a0a;
}

.tours__btn {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: #f2f2f2;
    border: 1px solid #e1e1e1;
    border-radius: 24px;
    color: #0a0a0a;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.05),
        0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.tours__btn:hover {
    background: #fff;
}

.tours__btn svg {
    transition: transform 0.3s ease;
}

.tours__btn:hover svg {
    transform: translateX(4px);
}

.tours__cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.tours__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #0a0a0a;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.tours__cta-btn:hover {
    background: #222;
}

.tours__cta-btn svg {
    transition: transform 0.3s ease;
}

.tours__cta-btn:hover svg {
    transform: translateX(4px);
}

/* Stats Section */
.stats {
    width: 100%;
    padding: 4rem 1rem;
    background: #fafafa;
    border-top: 1px solid #e5e5e5;
}

.stats__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stats__item {
    text-align: center;
    padding: 1rem;
    border-left: 1px solid #e5e5e5;
    animation: fadeInUp 0.8s ease-out both;
}

.stats__item:first-child {
    border-left: none;
}

.stats__item:nth-child(2) { animation-delay: 0.1s; }
.stats__item:nth-child(3) { animation-delay: 0.2s; }
.stats__item:nth-child(4) { animation-delay: 0.3s; }

.stats__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    color: #0a0a0a;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stats__label {
    display: block;
    font-size: 0.95rem;
    color: #555;
}

/* Tours Mobile */
@media (max-width: 768px) {
    .tours {
        padding: 3rem 1rem;
    }

    .tours__title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .tours__intro {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }

    .tours__row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .tours__image {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .tours__content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .tours__tour-title {
        font-size: 1.25rem;
    }

    .tours__details {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .tours__btn {
        align-self: stretch;
        justify-content: center;
    }

    .stats__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stats__item {
        border-left: none;
        border-top: 1px solid #e5e5e5;
        padding-top: 1.5rem;
    }

    .stats__item:nth-child(1),
    .stats__item:nth-child(2) {
        border-top: none;
        padding-top: 1rem;
    }

    .stats__number {
        font-size: 2rem;
    }
}

/* Guides Section */
.guides {
    width: 100%;
    padding: 4rem 1rem;
    background: #fff;
}

.guides__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.guides__title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #0a0a0a;
    text-align: center;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out both;
}

.guides__intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.guides__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.guides__item {
    text-align: center;
    animation: fadeInUp 0.8s ease-out both;
}

.guides__item:nth-child(1) { animation-delay: 0.1s; }
.guides__item:nth-child(2) { animation-delay: 0.2s; }
.guides__item:nth-child(3) { animation-delay: 0.3s; }
.guides__item:nth-child(4) { animation-delay: 0.4s; }

.guides__image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    background: #e5e5e5;
}

.guides__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guides__name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 0.25rem;
}

.guides__info {
    font-size: 0.9rem;
    color: #555;
}

.guides__skills {
    list-style: none;
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.guides__skills li {
    font-size: 0.8rem;
    color: #555;
    padding: 0.25rem 0.5rem;
    background: #f5f5f5;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .guides {
        padding: 3rem 1rem;
    }

    .guides__title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .guides__intro {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .guides__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }

    .guides__image {
        width: 120px;
        height: 120px;
    }
}

/* Hero Tour */
.hero-tour {
    width: 100%;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-tour__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.2);
    transition: transform 1.5s ease-out;
}

.hero-tour--loaded .hero-tour__bg {
    transform: scale(1);
}

.hero-tour__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-tour__inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 1rem;
    text-align: center;
}

.hero-tour__title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out both;
}

.hero-tour__subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@media (max-width: 768px) {
    .hero-tour {
        min-height: 400px;
    }

    .hero-tour__title {
        font-size: 2rem;
    }

    .hero-tour__subtitle {
        font-size: 1rem;
    }
}

/* Tour Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation utility classes */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.animated {
    animation-duration: 0.6s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}

.animate-fadeInUp.animated { animation-name: fadeInUp; }
.animate-fadeIn.animated { animation-name: fadeIn; }
.animate-slideInLeft.animated { animation-name: slideInLeft; }
.animate-slideInRight.animated { animation-name: slideInRight; }
.animate-scaleIn.animated { animation-name: scaleIn; }

/* Staggered delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
    }
    .animate-on-scroll.animated {
        animation: none;
    }
}

/* Tour Recommended Banner */
.tour-recommended {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.tour-recommended__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #22c55e;
    border-radius: 50%;
    color: #fff;
}

.tour-recommended__icon svg {
    width: 24px;
    height: 24px;
}

.tour-recommended__label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #16a34a;
    margin-bottom: 0.5rem;
}

.tour-recommended__text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin: 0;
}

@media (max-width: 600px) {
    .tour-recommended {
        flex-direction: column;
        text-align: center;
    }

    .tour-recommended__icon {
        margin: 0 auto;
    }
}

/* Tour Header */
.tour-header {
    margin-bottom: 2rem;
}

.tour-header__title {
    font-size: 2rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.tour-header__badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 1.25rem;
}

.tour-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #333;
    font-size: 0.9rem;
}

.tour-badge svg {
    opacity: 0.8;
    flex-shrink: 0;
}

.tour-badge--price {
    color: #0a0a0a;
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .tour-header__title {
        font-size: 1.5rem;
    }

    .tour-header__badges {
        gap: 0.2rem 1rem;
    }

    .tour-badge {
        font-size: 0.8rem;
    }

    .tour-badge--price {
        font-size: 1rem;
    }
}

/* Tour Content */
.tour-content {
    width: 100%;
    padding: 3rem 1rem;
    background: #fff;
}

.tour-content__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.tour-content__main {
    width: 100%;
}

/* Tour Tabs */
.tour-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem;
    position: sticky;
    top: 50px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 50;
    margin-left: -1rem;
    margin-right: -1rem;
}

.tour-tabs__btn {
    padding: 0.6rem 1rem;
    background: none;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-tabs__btn:hover {
    border-color: #0a0a0a;
    color: #0a0a0a;
}

.tour-tabs__btn--active {
    background: #0a0a0a;
    border-color: #0a0a0a;
    color: #fff;
}

.tour-tabs__btn--active:hover {
    color: #fff;
}

.tour-tabs__panel {
    display: none;
}

.tour-tabs__panel--active {
    display: block;
}

/* Tab: Overview */
.tour-overview {
    display: flex;
    gap: 2rem;
}

.tour-overview__image {
    flex: 0 0 40%;
    max-width: 40%;
}

.tour-overview__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.tour-overview__content {
    flex: 1;
}

.tour-overview__content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 1rem;
}

.tour-overview__content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.tour-overview__recommended {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.tour-overview__recommended h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 1rem;
}

.tour-overview__recommended p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.tour-overview__recommended p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: #333;
}

/* Tab: Gallery */
.tour-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.tour-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.tour-gallery__item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.tour-gallery__item:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

.tour-gallery__item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.tour-gallery__item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox--active {
    display: flex;
}

.lightbox__content {
    max-width: 90%;
    max-height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox__close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
    line-height: 1;
}

.lightbox__close:hover {
    opacity: 1;
}

.lightbox__prev,
.lightbox__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s, background 0.2s;
    border-radius: 4px;
}

.lightbox__prev:hover,
.lightbox__next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.lightbox__prev {
    left: 1rem;
}

.lightbox__next {
    right: 1rem;
}

.lightbox__counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .lightbox__prev,
    .lightbox__next {
        padding: 0.75rem 1rem;
        font-size: 1.25rem;
    }

    .lightbox__close {
        top: 0.5rem;
        right: 1rem;
        font-size: 2rem;
    }
}

/* Tab: Itinerary Layout */
.tour-itinerary-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.tour-itinerary-layout__map {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.tour-itinerary-layout__map .tour-map {
    height: 450px;
}

.tour-itinerary-layout__content {
    min-width: 0;
}

/* Tab: Map */
.tour-map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

/* Map Numbered Markers */
.map-marker-numbered {
    background: transparent;
    border: none;
}

.map-marker-numbered__inner {
    width: 28px;
    height: 28px;
    background: #1a1a2e;
    border: 3px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* Map Direction Arrows */
.map-arrow {
    background: transparent;
    border: none;
}

.map-arrow__inner {
    font-size: 16px;
    color: #1a1a2e;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    line-height: 1;
}

/* Tab: Services */
.tour-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.tour-services--three-cols {
    grid-template-columns: 1fr 1.3fr 1.3fr;
    gap: 2rem 3rem;
}

.tour-services__column--guide {
    padding-right: 1rem;
    border-right: 1px solid #e5e5e5;
}

.tour-services__column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 1rem;
}

/* Tour Guide in Services */
.tour-guide {
    text-align: left;
}

.tour-guide__image {
    width: 100%;
    margin: 1rem 0 1.5rem 0;
    border-radius: 24px;
    overflow: hidden;
}

.tour-guide__image img {
    width: 100%;
    height: auto;
    display: block;
}

.tour-guide__name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 0.35rem;
}

.tour-guide__info {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.tour-guide__languages {
    font-size: 0.9rem;
    color: #222;
    margin-bottom: 0.5rem;
}

.tour-guide__expertise {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.5;
}

.tour-services__list {
    list-style: none;
}

.tour-services__list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #333;
}

.tour-services__list--included li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 600;
}

.tour-services__list--excluded li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 600;
}

/* Tab: Pricing */
.tour-pricing__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 1.5rem;
}

.tour-pricing__table {
    width: 100%;
    border-collapse: collapse;
}

.tour-pricing__table tr {
    border-bottom: 1px solid #e5e5e5;
}

.tour-pricing__table td {
    padding: 1rem 0;
    font-size: 0.95rem;
    color: #444;
}

.tour-pricing__table td:last-child {
    text-align: right;
    color: #0a0a0a;
}

/* Pricing Layout */
.tour-pricing-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.tour-pricing-layout__left {
    padding-right: 2rem;
    border-right: 1px solid #e5e5e5;
}

/* Departures Grid */
.tour-departures {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tour-departure {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.tour-departure:hover {
    border-color: #ccc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tour-departure--soldout {
    opacity: 0.6;
    background: #f0f0f0;
}

.tour-departure--lastspots {
    border-color: #f59e0b;
    background: #fffbeb;
}

.tour-departure__date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #0a0a0a;
    font-size: 0.95rem;
}

.tour-departure__date svg {
    opacity: 0.6;
}

.tour-departure__info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tour-departure__spots {
    font-size: 0.85rem;
    color: #555;
}

.tour-departure__status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.tour-departure__status--soldout {
    background: #dc2626;
    color: #fff;
}

.tour-departure__status--lastspots {
    background: #f59e0b;
    color: #fff;
}

.tour-departure__price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a0a0a;
}

.tour-departure__btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #0a0a0a;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    transition: background 0.2s ease;
}

.tour-departure__btn:hover {
    background: #333;
}

.tour-departure--soldout .tour-departure__date,
.tour-departure--soldout .tour-departure__price {
    text-decoration: line-through;
    opacity: 0.7;
}

@media (max-width: 992px) {
    .tour-pricing-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tour-pricing-layout__left {
        padding-right: 0;
        padding-bottom: 2rem;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }
}

@media (max-width: 600px) {
    .tour-departures {
        grid-template-columns: 1fr;
    }
}

/* Tab: Da sapere / Things to know */
.tour-knowhow {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

@media (max-width: 900px) {
    .tour-knowhow {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.tour-knowhow__guide {
    padding-right: 2rem;
    border-right: 1px solid #e5e5e5;
}

@media (max-width: 900px) {
    .tour-knowhow__guide {
        padding-right: 0;
        border-right: none;
        padding-bottom: 2rem;
        border-bottom: 1px solid #e5e5e5;
    }
}

.tour-knowhow__guide h4,
.tour-knowhow__tips h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 1.5rem;
}

.tour-guide__intro {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin-top: 1rem;
}

.tour-tips {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tour-tips__item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.tour-tips__item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.tour-tips__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.tour-tips__header svg {
    flex-shrink: 0;
    color: #1a1a2e;
}

.tour-tips__header h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0;
}

.tour-tips__item p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* Accordion */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.accordion__item {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.accordion__item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.accordion__item--active {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.accordion__header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.accordion__header:hover {
    background: #fafafa;
}

.accordion__day {
    flex-shrink: 0;
    padding: 0.4rem 0.75rem;
    background: #0a0a0a;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
}

.accordion__title {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0a0a0a;
}

.accordion__meta-preview {
    font-size: 0.85rem;
    color: #555;
}

.accordion__icon {
    flex-shrink: 0;
    color: #555;
    transition: transform 0.3s ease;
}

.accordion__item--active .accordion__icon {
    transform: rotate(180deg);
}

.accordion__content {
    display: none;
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid #e5e5e5;
}

.accordion__item--active .accordion__content {
    display: block;
}

.accordion__meta {
    display: flex;
    gap: 1.5rem;
    padding-top: 1.25rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #444;
}

.accordion__description {
    padding-top: 10px;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.accordion__note {
    font-size: 0.85rem;
    color: #444;
    font-style: italic;
    padding: 0.75rem 1rem;
    background: #f5f5f5;
    border-left: 3px solid #0a0a0a;
    border-radius: 0 4px 4px 0;
}

/* Tour Info Cards */
.tour-info {
    width: 100%;
    padding: 4rem 1rem;
    background: #fafafa;
    border-top: 1px solid #e5e5e5;
}

.tour-info__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.tour-info__card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.tour-info__card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 1rem;
}

.tour-info__card ul {
    list-style: none;
}

.tour-info__card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #444;
}

.tour-info__card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0a0a0a;
    font-weight: 600;
}

@media (max-width: 768px) {
    .tour-badges__inner {
        gap: 0.75rem;
    }

    .tour-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .tour-itinerary {
        padding: 3rem 1rem;
    }

    .tour-itinerary__title {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .accordion__header {
        flex-wrap: wrap;
        padding: 1rem;
        gap: 0.5rem;
    }

    .accordion__day {
        font-size: 0.75rem;
    }

    .accordion__title {
        flex: 1 1 100%;
        order: 2;
        font-size: 1rem;
    }

    .accordion__meta-preview {
        order: 1;
        font-size: 0.8rem;
    }

    .accordion__icon {
        order: 1;
    }

    .accordion__content {
        padding: 0 1rem 1rem;
    }

    .accordion__meta {
        flex-direction: column;
        gap: 0.25rem;
    }

    .tour-info__inner {
        grid-template-columns: 1fr;
    }

    /* Tour Content Mobile */
    .tour-tabs__nav {
        gap: 0.4rem;
    }

    .tour-tabs__btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .tour-overview {
        flex-direction: column;
    }

    .tour-overview__image {
        flex: none;
        max-width: 100%;
    }

    .tour-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .tour-services {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .tour-services__column--guide {
        order: -1;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        padding-bottom: 1.5rem;
    }

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

    .tour-itinerary-layout__map {
        position: static;
        order: 2;
    }

    .tour-itinerary-layout__map .tour-map {
        height: 300px;
    }

    .tour-itinerary-layout__content {
        order: 1;
    }

    .tour-map {
        height: 300px;
    }
}

/* Footer */
.footer {
    width: 100%;
    background: #0a0a0a;
    padding: 4rem 0 3rem;
    margin-top: 4rem;
}

.footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.footer__brand {
    max-width: 400px;
}

.footer__logo {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.footer__logo img {
    height: 40px;
    width: auto;
}

.footer__desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.footer__credit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__credit strong {
    color: rgba(255, 255, 255, 0.8);
}

.footer__links {
    display: flex;
    gap: 4rem;
}

.footer__col h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.25rem;
}

.footer__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__col ul li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.footer__col ul li a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer__inner {
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer__brand {
        max-width: 100%;
    }

    .footer__links {
        gap: 3rem;
    }
}

/* Tour Contact Form Section */
.tour-contact {
    background: linear-gradient(to bottom, #f8f8f8 0%, #ffffff 100%);
    padding: 4rem 0;
}

.tour-contact__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.tour-contact__cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.tour-contact__cta > p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.tour-contact__features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tour-contact__feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #333;
}

.tour-contact__feature svg {
    color: #22c55e;
    flex-shrink: 0;
}

.tour-contact__form-wrapper {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.tour-contact__form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 0.5rem;
}

.tour-contact__subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
}

.tour-contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tour-contact__form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.tour-contact__form .form-row--three {
    grid-template-columns: repeat(3, 1fr);
}

.tour-contact__form .form-row--four {
    grid-template-columns: repeat(4, 1fr);
}

.tour-calculator {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 0;
    border-top: 1px solid #eee;
    font-size: 0.875rem;
}

.tour-calculator__row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 0.25rem 0;
}

.tour-calculator__label {
    color: #666;
}

.tour-calculator__calc {
    color: #999;
    font-size: 0.8rem;
    text-align: right;
}

.tour-calculator__amount {
    font-weight: 600;
    color: #333;
    text-align: right;
    min-width: 70px;
}

.tour-calculator__row--total {
    border-top: 1px solid #ddd;
    margin-top: 0.25rem;
    padding-top: 0.5rem;
}

.tour-calculator__row--total .tour-calculator__label {
    font-weight: 600;
    color: #333;
}

.tour-calculator__row--total .tour-calculator__amount {
    font-size: 1.1rem;
    color: #0a0a0a;
}

.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #555;
}

.form-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.form-checkbox__mark {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    border-radius: 3px;
    transition: all 0.2s;
    position: relative;
    margin-top: 2px;
}

.form-checkbox__mark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s;
}

.form-checkbox input:checked ~ .form-checkbox__mark {
    background: #0a0a0a;
    border-color: #0a0a0a;
}

.form-checkbox input:checked ~ .form-checkbox__mark::after {
    opacity: 1;
}

.form-checkbox__text {
    line-height: 1.5;
}

.form-checkbox__text a {
    color: #0a0a0a;
    font-weight: 500;
}

.tour-contact__form .form-group {
    position: relative;
}

.tour-contact__form .form-group--readonly input {
    color: #555;
    font-weight: 500;
    cursor: default;
    border-bottom-style: dashed;
}

.tour-contact__form .form-group--readonly label {
    top: -0.25rem;
    font-size: 0.75rem;
    color: #0a0a0a;
}

.tour-contact__form .form-group input,
.tour-contact__form .form-group select,
.tour-contact__form .form-group textarea {
    width: 100%;
    padding: 1rem 0 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 500;
    color: #0a0a0a;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ddd;
    outline: none;
    transition: border-color 0.3s;
}

.tour-contact__form .form-group input:focus,
.tour-contact__form .form-group select:focus,
.tour-contact__form .form-group textarea:focus {
    border-bottom-color: #0a0a0a;
}

.tour-contact__form .form-group label {
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 1rem;
    color: #888;
    pointer-events: none;
    transition: all 0.3s ease;
}

.tour-contact__form .form-group input:focus ~ label,
.tour-contact__form .form-group input:not(:placeholder-shown) ~ label,
.tour-contact__form .form-group select:focus ~ label,
.tour-contact__form .form-group textarea:focus ~ label,
.tour-contact__form .form-group textarea:not(:placeholder-shown) ~ label {
    top: -0.25rem;
    font-size: 0.75rem;
    color: #0a0a0a;
}

/* For select and number inputs that always have a value */
.tour-contact__form .form-group select ~ label,
.tour-contact__form .form-group input[type="number"] ~ label {
    top: -0.25rem;
    font-size: 0.75rem;
    color: #0a0a0a;
}

/* For textarea with pre-filled content */
.tour-contact__form .form-group textarea ~ label {
    top: -0.25rem;
    font-size: 0.75rem;
    color: #0a0a0a;
}

.tour-contact__form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.tour-contact__form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

.tour-contact__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #0a0a0a;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 0.5rem;
}

.tour-contact__submit:hover {
    background: #333;
    transform: translateY(-2px);
}

.tour-contact__submit:disabled {
    background: #999;
    cursor: not-allowed;
    transform: none;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #0a0a0a;
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999;
}

.toast--visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.toast__icon {
    flex-shrink: 0;
    color: #22c55e;
}

.toast__message {
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 900px) {
    .tour-contact__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    .tour-contact {
        padding: 3rem 0;
    }

    .tour-contact__form-wrapper {
        padding: 1.5rem;
    }

    .tour-contact__form .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tour-contact__form .form-row--three,
    .tour-contact__form .form-row--four {
        grid-template-columns: 1fr 1fr;
    }

    .tour-calculator__row {
        grid-template-columns: 1fr auto;
        gap: 0.5rem;
    }

    .tour-calculator__calc {
        display: none;
    }
}

/* ===========================================
   VIETNAM THEME - Bamboo accents
   =========================================== */
.tour-content--vietnam .tour-tabs__btn--active,
.tour-content--vietnam-south .tour-tabs__btn--active {
    background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('../../images/bamboo.png');
    background-size: cover;
    background-position: center center;
    border-color: #2e7d32;
}

.tour-content--vietnam .accordion__day,
.tour-content--vietnam-south .accordion__day {
    background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('../../images/bamboo.png');
    background-size: cover;
    background-position: center center;
}

.tour-content--vietnam .accordion__note,
.tour-content--vietnam-south .accordion__note {
    border-left-color: #2e7d32;
}

.tour-content--vietnam .tour-departure__btn,
.tour-content--vietnam-south .tour-departure__btn {
    background-image: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('../../images/bamboo.png');
    background-size: cover;
    background-position: center center;
}

.tour-content--vietnam .tour-departure__btn:hover,
.tour-content--vietnam-south .tour-departure__btn:hover {
    opacity: 0.9;
}

.tour-content--vietnam .tour-services__list--included li::before,
.tour-content--vietnam-south .tour-services__list--included li::before {
    color: #2e7d32;
}

.tour-content--vietnam .tour-departure__status--lastspots,
.tour-content--vietnam-south .tour-departure__status--lastspots {
    background: #e8f5e9;
    color: #2e7d32;
}

.tour-content--vietnam .map-marker-numbered__inner,
.tour-content--vietnam-south .map-marker-numbered__inner {
    background: #2e7d32;
}

.tour-content--vietnam .map-arrow__inner,
.tour-content--vietnam-south .map-arrow__inner {
    color: #2e7d32;
}

.tour-content--vietnam .tour-gallery,
.tour-content--vietnam-south .tour-gallery,
.tour-content--egypt .tour-gallery {
    grid-template-columns: repeat(4, 1fr);
}

.tour-content--vietnam .tour-gallery__item img,
.tour-content--vietnam-south .tour-gallery__item img,
.tour-content--egypt .tour-gallery__item img {
    height: 150px;
}
