/* =========================================================
   Fase 2 — Component Styles
   Post-registration dashboard for Encuentro Ferrero Budapest
   ========================================================= */

/* ----------------------------------------------------------
   Destination Hero
   ---------------------------------------------------------- */
.destination-hero {
    position: relative;
    border-radius: 0 0 28px 28px;
    min-height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a14 100%);
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

/* YouTube Video Background */
.destination-hero__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.destination-hero__video-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180%;
    height: 180%;
    transform: translate(-50%, -50%);
    border: none;
    object-fit: cover;
}

.destination-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(197, 160, 89, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(197, 160, 89, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.85) 100%);
    z-index: 1;
}

.destination-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3.5rem 2rem 2.5rem;
    gap: 0.75rem;
}

.destination-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: #C5A059;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.destination-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 8vw, 4rem);
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1;
    text-shadow: 0 0 60px rgba(197, 160, 89, 0.3);
    letter-spacing: -0.02em;
}

.destination-hero__subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 300;
    margin: 0;
}

.destination-hero__hotel {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.5rem 1.2rem;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(197, 160, 89, 0.15);
    backdrop-filter: blur(10px);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ----------------------------------------------------------
   Day Tabs — Premium Edition
   ---------------------------------------------------------- */
.day-tabs-wrapper {
    margin-bottom: 1.75rem;
    padding: 0 0.75rem;
}

/* Header */
.day-tabs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    margin-top: 1.25rem;
}

.day-tabs-header__accent {
    width: 3px;
    height: 32px;
    border-radius: 4px;
    background: linear-gradient(180deg, #C5A059 0%, #E5C585 50%, transparent 100%);
    box-shadow: 0 0 12px rgba(197, 160, 89, 0.4);
    animation: accentPulse 3s ease-in-out infinite;
}

@keyframes accentPulse {

    0%,
    100% {
        box-shadow: 0 0 12px rgba(197, 160, 89, 0.4);
        opacity: 1;
    }

    50% {
        box-shadow: 0 0 20px rgba(197, 160, 89, 0.7), 0 0 40px rgba(197, 160, 89, 0.2);
        opacity: 0.85;
    }
}

.day-tabs-header__count {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    padding: 0.4rem 0.75rem;
    border-radius: 12px;
    background: rgba(197, 160, 89, 0.06);
    border: 1px solid rgba(197, 160, 89, 0.12);
}

/* Scroll Container with Fade Edges */
.day-tabs-scroll-container {
    position: relative;
}

.day-tabs-scroll-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 5;
    pointer-events: none;
}

.day-tabs-scroll-fade--left {
    left: 0;
    background: linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, transparent 100%);
}

.day-tabs-scroll-fade--right {
    right: 0;
    background: linear-gradient(270deg, rgba(5, 5, 5, 0.9) 0%, transparent 100%);
}

.day-tabs-scroll {
    display: flex;
    gap: 0.55rem;
    overflow-x: auto;
    padding: 0.5rem 0.25rem 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x proximity;
}

.day-tabs-scroll::-webkit-scrollbar {
    display: none;
}

/* Individual Tab — Luxury Glass */
.day-tab {
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    min-width: 72px;
    color: #fff;
    overflow: hidden;
    scroll-snap-align: center;
    /* Staggered entrance */
    opacity: 0;
    transform: translateY(16px) scale(0.92);
    animation: tabSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes tabSlideIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hidden glow layer */
.day-tab__glow {
    position: absolute;
    inset: -1px;
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: radial-gradient(ellipse at 50% 0%, rgba(197, 160, 89, 0.25) 0%, transparent 70%);
    z-index: 0;
}

/* Shimmer sweep */
.day-tab__shimmer {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.day-tab__shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.06),
            transparent);
    transform: skewX(-20deg);
    transition: none;
}

/* Active indicator dot */
.day-tab__indicator {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: transparent;
    margin-top: 0.15rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Hover State */
.day-tab:hover {
    background: rgba(197, 160, 89, 0.08);
    border-color: rgba(197, 160, 89, 0.2);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.4);
}

.day-tab:hover .day-tab__glow {
    opacity: 1;
}

.day-tab:hover .day-tab__shimmer::after {
    animation: tabShimmerSweep 0.8s ease forwards;
}

@keyframes tabShimmerSweep {
    to {
        left: 150%;
    }
}

/* Active State — Full Gold */
.day-tab--active {
    background: linear-gradient(145deg, #C5A059 0%, #D4B06A 40%, #E5C585 100%);
    border-color: rgba(229, 197, 133, 0.4);
    box-shadow:
        0 8px 28px -6px rgba(197, 160, 89, 0.55),
        0 0 0 1px rgba(229, 197, 133, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-4px) scale(1.06);
}

.day-tab--active .day-tab__glow {
    opacity: 1;
    background: radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
}

.day-tab--active .day-tab__shimmer::after {
    animation: tabShimmerSweepLoop 3s ease-in-out 1s infinite;
}

@keyframes tabShimmerSweepLoop {
    0% {
        left: -100%;
    }

    50% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.day-tab--active .day-tab__weekday,
.day-tab--active .day-tab__month {
    color: rgba(255, 255, 255, 1);
}

.day-tab--active .day-tab__number {
    color: #ffffff;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
}

.day-tab--active .day-tab__indicator {
    width: 6px;
    height: 6px;
    background: #050505;
    box-shadow: 0 0 6px rgba(5, 5, 5, 0.3);
}

/* Active tap feedback */
.day-tab:active {
    transform: translateY(-1px) scale(0.97);
    transition-duration: 0.1s;
}

/* Text Elements */
.day-tab__weekday {
    position: relative;
    z-index: 1;
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.3s ease;
}

.day-tab__number {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Playfair Display', serif;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.day-tab__month {
    position: relative;
    z-index: 1;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease;
}

/* Bottom decorative line */
.day-tabs__bottom-line {
    height: 1px;
    margin-top: 0.25rem;
    background: linear-gradient(90deg, transparent 0%, rgba(197, 160, 89, 0.25) 30%, rgba(197, 160, 89, 0.35) 50%, rgba(197, 160, 89, 0.25) 70%, transparent 100%);
}

/* ----------------------------------------------------------
   Day Detail / Timeline
   ---------------------------------------------------------- */
.day-detail-wrapper {
    padding: 0 0.5rem;
    margin-bottom: 2rem;
}

.day-detail-panel {
    display: none;
}

.day-detail-panel--active {
    display: block;
    animation: fadeSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    padding: 30px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.destino-panel {
    animation: fadeSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.day-detail__header {
    margin-bottom: 1.25rem;
}

.day-detail__label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.day-detail__label-badge {
    display: inline-flex;
    padding: 0.3rem 0.75rem;
    border-radius: 8px;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: #C5A059;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.day-detail__label-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.day-detail__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Timeline */
.day-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.day-timeline__item {
    display: flex;
    gap: 1rem;
    min-height: 72px;
}

.day-timeline__line {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 36px;
    flex-shrink: 0;
    padding-top: 2px;
}

.day-timeline__dot {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A059;
    flex-shrink: 0;
    z-index: 1;
}

.day-timeline__connector {
    width: 2px;
    flex: 1;
    min-height: 20px;
    background: linear-gradient(180deg, rgba(197, 160, 89, 0.3) 0%, rgba(197, 160, 89, 0.05) 100%);
    margin: 4px 0;
}

.day-timeline__content {
    flex: 1;
    padding: 0.5rem 0 1.5rem;
}

.day-timeline__time {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #C5A059;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
    padding: 0.15rem 0.5rem;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 6px;
}

.day-timeline__event-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0.25rem 0 0.2rem;
    line-height: 1.3;
}

.day-timeline__event-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    line-height: 1.5;
}

/* ----------------------------------------------------------
   Flight Cards — Premium Edition
   ---------------------------------------------------------- */
.flights-section {
    padding: 0 0.5rem;
    margin-bottom: 2rem;
}

.flights-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.flights-section__route-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(197, 160, 89, 0.08);
    border: 1px solid rgba(197, 160, 89, 0.18);
    color: #C5A059;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Grid: stacked on mobile, side-by-side on desktop */
.flights-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.flight-route-card {
    position: relative;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(197, 160, 89, 0.12);
    border-radius: 22px;
    padding: 1.5rem 1.25rem;
    backdrop-filter: blur(14px);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flight-route-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.5);
}

.flight-route-card__header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed rgba(197, 160, 89, 0.15);
}

.flight-route-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15), rgba(197, 160, 89, 0.05));
    border: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A059;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.flight-segment {
    padding: 0.85rem 0;
}

.flight-segment--connection {
    border-top: 1px dashed rgba(255, 255, 255, 0.05);
}

.flight-segment__transfer {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.7rem;
    border-radius: 8px;
    background: rgba(197, 160, 89, 0.06);
    border: 1px solid rgba(197, 160, 89, 0.1);
    color: rgba(197, 160, 89, 0.7);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.flight-segment__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
}

.flight-segment__airline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flight-segment__airline-name {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.flight-segment__flight-num {
    font-size: 0.7rem;
    font-weight: 800;
    color: #C5A059;
    padding: 0.2rem 0.55rem;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(197, 160, 89, 0.12);
}

.flight-segment__date {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}

.flight-segment__route {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flight-segment__city {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 55px;
    gap: 0.1rem;
}

.flight-segment__code {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.flight-segment__time {
    font-size: 0.75rem;
    color: #C5A059;
    font-weight: 700;
    margin-top: 0.1rem;
}

.flight-segment__city-full {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    margin-top: 0.15rem;
    max-width: 90px;
}

.flight-segment__line {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0;
    min-width: 60px;
}

.flight-segment__line-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.5);
    border: 1px solid rgba(197, 160, 89, 0.3);
    flex-shrink: 0;
}

.flight-segment__line-track {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.35), rgba(197, 160, 89, 0.1));
}

.flight-segment__line-plane {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A059;
    flex-shrink: 0;
    animation: planeFloat 3s ease-in-out infinite;
}

@keyframes planeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

/* ----------------------------------------------------------
   Profile Card
   ---------------------------------------------------------- */
.profile-section {
    padding: 0 0.5rem;
    margin-bottom: 2rem;
}

.profile-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(12px);
}

.profile-card__header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.profile-card__avatar-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.profile-card__avatar {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    border: 3px solid rgba(197, 160, 89, 0.3) !important;
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.15);
    max-width: 80px !important;
}

.profile-card__avatar-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid #0f172a;
}

.profile-card__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem;
}

.profile-card__email {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 0.5rem;
}

.profile-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    border-radius: 8px;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.2);
    color: #C5A059;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.profile-card__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (max-width: 480px) {
    .profile-card__grid {
        grid-template-columns: 1fr;
    }
}

.profile-card__divider {
    grid-column: 1 / -1;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0.5rem 0;
}

.profile-card__field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(5, 5, 5, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.profile-card__field--full {
    grid-column: 1 / -1;
}

.profile-card__field-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.profile-card__field-value {
    font-size: 0.85rem;
    color: #fff;
    font-weight: 500;
}

.profile-card__actions {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.profile-card__btn {
    width: 100%;
    padding: 0.85rem;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.profile-card__btn--logout {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
}

.profile-card__btn--logout:hover {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* ----------------------------------------------------------
   Destino — Budapest Section
   ---------------------------------------------------------- */
.destino-section {
    padding: 0 0.5rem;
    margin-bottom: 2rem;
}

/* City Hero */
.destino-hero {
    position: relative;
    border-radius: 24px;
    min-height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
    border: 1px solid rgba(197, 160, 89, 0.12);
    margin-bottom: 1.5rem;
}

.destino-hero__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.destino-hero__video-wrap iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180%;
    height: 180%;
    transform: translate(-50%, -50%);
    border: none;
}

.destino-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(197, 160, 89, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(197, 160, 89, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.1) 0%, rgba(5, 5, 5, 0.7) 100%);
    z-index: 1;
}

.destino-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem 2.5rem;
    gap: 0.5rem;
}

.destino-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: rgba(197, 160, 89, 0.12);
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: #C5A059;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.destino-hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 7vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1;
    text-shadow: 0 0 50px rgba(197, 160, 89, 0.25);
    letter-spacing: -0.02em;
}

.destino-hero__country {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 300;
    margin: 0;
}

/* Intro Quote */
.destino-intro {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(197, 160, 89, 0.1);
    backdrop-filter: blur(10px);
}

.destino-intro__accent {
    width: 3px;
    min-height: 40px;
    border-radius: 4px;
    background: linear-gradient(180deg, #C5A059, #E5C585, transparent);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.destino-intro__text {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Info Cards */
.destino-cards {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.destino-card {
    padding: 1.25rem;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.destino-card:hover {
    transform: translateY(-2px);
    border-color: rgba(197, 160, 89, 0.15);
}

.destino-card__icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A059;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.destino-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.4rem;
}

.destino-card__text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    margin: 0;
}

/* Quick Facts */
.destino-facts {
    margin-bottom: 1.5rem;
}

.destino-facts__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.85rem;
}

.destino-facts__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
}

.destino-fact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 1rem 0.75rem;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
}

.destino-fact__value {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #C5A059;
    line-height: 1;
}

.destino-fact__label {
    font-size: 0.6rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Hotel Card */
.destino-hotel {
    padding: 1.5rem;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(197, 160, 89, 0.1);
    backdrop-filter: blur(10px);
}

.destino-hotel__header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.destino-hotel__icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15), rgba(197, 160, 89, 0.05));
    border: 1px solid rgba(197, 160, 89, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A059;
    font-size: 1rem;
    flex-shrink: 0;
}

.destino-hotel__name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.destino-hotel__sub {
    font-size: 0.65rem;
    font-weight: 700;
    color: #C5A059;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0.15rem 0 0;
}

.destino-hotel__desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin: 0;
}

/* ----------------------------------------------------------
   Bottom Navigation (Fase 2)
   ---------------------------------------------------------- */
.bottom-nav-f2 {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 720px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.5rem 0.25rem;
    padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
    z-index: 50;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.bottom-nav-f2__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0.2rem;
    border-radius: 14px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bottom-nav-f2__item i {
    font-size: 1.05rem;
    transition: transform 0.3s ease;
}

.bottom-nav-f2__item:hover {
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.03);
}

.bottom-nav-f2__item--active {
    color: #C5A059;
    background: rgba(197, 160, 89, 0.08);
}

.bottom-nav-f2__item--active i {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 6px rgba(197, 160, 89, 0.4));
}

/* ----------------------------------------------------------
   Main Container (Fase 2)
   ---------------------------------------------------------- */
.fase2-main {
    padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
}

/* Ensure images inside fase2 components render properly */
.fase2-main img {
    max-width: 100% !important;
}

/* ----------------------------------------------------------
   Responsive — Tablet (768px+)
   ---------------------------------------------------------- */
@media (min-width: 768px) {

    /* Centered content container */
    .fase2-main {
        max-width: 720px;
        margin: 0 auto;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    /* Destination Hero — wider & taller */
    .destination-hero {
        border-radius: 0 0 36px 36px;
        min-height: 340px;
    }

    .destination-hero__content {
        padding: 4.5rem 3rem 3.5rem;
    }

    .destination-hero__title {
        font-size: 4rem;
    }

    .destination-hero__hotel {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }

    /* Profile — 2 columns */
    .profile-card__grid {
        grid-template-columns: 1fr 1fr;
    }

    .profile-card {
        padding: 2.5rem 2rem;
    }

    /* Bottom Nav — wider */
    .bottom-nav-f2 {
        max-width: 720px;
    }

    /* Flights — side by side route cards */
    .flights-section {
        display: block;
    }
}

/* ----------------------------------------------------------
   Responsive — Desktop (1024px+)
   ---------------------------------------------------------- */
@media (min-width: 1024px) {

    /* Wider centered container */
    .fase2-main {
        max-width: 960px;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    /* Header expand */
    .app-header {
        max-width: 960px;
        margin: 0 auto;
        border-radius: 0 0 20px 20px;
    }

    /* Destination Hero — cinematic */
    .destination-hero {
        border-radius: 28px;
        margin: 1rem 0 2.5rem;
        min-height: 380px;
        box-shadow:
            0 24px 60px -20px rgba(0, 0, 0, 0.6),
            0 0 0 1px rgba(197, 160, 89, 0.15);
    }

    .destination-hero__content {
        padding: 5rem 4rem 4rem;
        gap: 1rem;
    }

    .destination-hero__title {
        font-size: 5rem;
        letter-spacing: -0.03em;
    }

    .destination-hero__subtitle {
        font-size: 1.15rem;
        letter-spacing: 0.35em;
    }

    .destination-hero__badge {
        padding: 0.45rem 1.25rem;
        font-size: 0.75rem;
    }

    .destination-hero__hotel {
        font-size: 0.95rem;
        padding: 0.65rem 1.75rem;
        border-radius: 14px;
    }

    /* Day Tabs — single row, scrollable on desktop too */
    .day-tabs-wrapper {
        margin-bottom: 2rem;
        padding: 0;
    }

    .day-tabs-scroll-container {
        display: flex;
        justify-content: center;
    }

    .day-tabs-scroll-fade--left {
        background: linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, transparent 100%);
    }

    .day-tabs-scroll-fade--right {
        background: linear-gradient(270deg, rgba(5, 5, 5, 0.95) 0%, transparent 100%);
    }

    .day-tabs-scroll {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 0.5rem;
        padding: 0.5rem 0.5rem 1.25rem;
    }

    .day-tab {
        min-width: 76px;
        padding: 0.75rem 0.9rem;
    }

    .day-tab__number {
        font-size: 1.5rem;
    }

    .day-tab__weekday,
    .day-tab__month {
        font-size: 0.58rem;
    }

    /* Day Detail — wider with subtle card background */
    .day-detail-wrapper {
        padding: 0;
        margin-bottom: 2.5rem;
    }

    .day-detail__header {
        margin-bottom: 1.75rem;
    }

    .day-detail__title {
        font-size: 1.6rem;
    }

    .day-timeline__item {
        gap: 1.25rem;
        min-height: 80px;
    }

    .day-timeline__dot {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .day-timeline__dot i {
        font-size: 0.85rem !important;
    }

    .day-timeline__event-title {
        font-size: 1.05rem;
    }

    .day-timeline__event-desc {
        font-size: 0.85rem;
    }

    .day-timeline__content {
        padding: 0.5rem 0 1.75rem;
    }

    /* Flights — side-by-side on desktop */
    .flights-section {
        padding: 0;
        margin-bottom: 2.5rem;
    }

    .flights-grid {
        flex-direction: row;
        gap: 1.25rem;
    }

    .flights-grid>.flight-route-card {
        flex: 1;
    }

    .flight-route-card {
        border-radius: 26px;
        padding: 2rem 1.75rem;
    }

    .flight-route-card__icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 1rem;
    }

    .flight-segment__code {
        font-size: 1.6rem;
    }

    .flight-segment__time {
        font-size: 0.85rem;
    }

    .flight-segment__city-full {
        font-size: 0.65rem;
        max-width: 110px;
    }

    .flight-segment__route {
        gap: 1rem;
    }

    .flight-segment__line-plane {
        width: 30px;
        height: 30px;
    }

    .flight-segment__line-dot {
        width: 8px;
        height: 8px;
    }

    .flight-segment__airline-name {
        font-size: 0.75rem;
    }

    .flight-segment__flight-num {
        font-size: 0.75rem;
        padding: 0.25rem 0.65rem;
    }

    /* Profile — premium desktop */
    .profile-section {
        padding: 0;
        margin-bottom: 2.5rem;
    }

    .profile-card {
        border-radius: 28px;
        padding: 2.5rem 2.5rem;
    }

    .profile-card__avatar {
        width: 96px !important;
        height: 96px !important;
        max-width: 96px !important;
    }

    .profile-card__name {
        font-size: 1.6rem;
    }

    .profile-card__field {
        padding: 1rem 1.25rem;
        border-radius: 14px;
    }

    .profile-card__btn {
        max-width: 320px;
        margin: 0 auto;
        display: block;
    }

    /* Destino — desktop */
    .destino-section {
        padding: 0;
    }

    .destino-hero {
        border-radius: 28px;
        min-height: 280px;
    }

    .destino-hero__content {
        padding: 4rem 4rem 3.5rem;
    }

    .destino-hero__title {
        font-size: 4.5rem;
    }

    .destino-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .destino-card {
        padding: 1.75rem;
        border-radius: 22px;
    }

    .destino-card__icon {
        width: 44px;
        height: 44px;
        border-radius: 13px;
        font-size: 0.95rem;
    }

    .destino-card__title {
        font-size: 1.15rem;
    }

    .destino-card__text {
        font-size: 0.85rem;
    }

    .destino-intro {
        padding: 2rem;
        border-radius: 22px;
    }

    .destino-intro__text {
        font-size: 1.15rem;
    }

    .destino-facts__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .destino-fact {
        padding: 1.25rem 1rem;
    }

    .destino-fact__value {
        font-size: 1.6rem;
    }

    .destino-hotel {
        padding: 2rem;
        border-radius: 24px;
    }

    .destino-hotel__name {
        font-size: 1.15rem;
    }

    .destino-hotel__desc {
        font-size: 0.85rem;
    }

    /* Bottom Nav — centered & refined */
    .bottom-nav-f2 {
        max-width: 960px;
        border-radius: 24px 24px 0 0;
        padding: 0.6rem 2rem;
        gap: 0.5rem;
    }

    .bottom-nav-f2__item {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        border-radius: 16px;
        font-size: 0.7rem;
    }

    .bottom-nav-f2__item i {
        font-size: 1rem;
    }
}

/* ----------------------------------------------------------
   Responsive — Large Desktop (1280px+)
   ---------------------------------------------------------- */
@media (min-width: 1280px) {

    .fase2-main {
        max-width: 1080px;
    }

    .app-header {
        max-width: 1080px;
    }

    .destination-hero {
        min-height: 420px;
    }

    .destination-hero__title {
        font-size: 5.5rem;
    }

    .destination-hero__content {
        padding: 5.5rem 5rem 4.5rem;
    }

    .bottom-nav-f2 {
        max-width: 1080px;
    }

    /* Day tabs — comfortable spacing */
    .day-tab {
        min-width: 88px;
        padding: 0.9rem 1.25rem;
    }

    .day-tab__number {
        font-size: 1.7rem;
    }
}

/* ----------------------------------------------------------
   Responsive — Small Mobile (360px-)
   ---------------------------------------------------------- */
@media (max-width: 360px) {
    .day-tab {
        min-width: 58px;
        padding: 0.5rem 0.65rem;
    }

    .day-tab__number {
        font-size: 1.2rem;
    }
}

/* ----------------------------------------------------------
   Notifications — Luxury Redesign
   ---------------------------------------------------------- */
.notifications-section {
    padding: 0 1rem;
    margin-bottom: 3rem;
}

.luxury-glass {
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.8) 0%, rgba(2, 6, 23, 0.95) 100%);
    border: 1px solid rgba(197, 160, 89, 0.25);
    border-radius: 32px;
    padding: 2rem;
    backdrop-filter: blur(25px);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.7),
        inset 0 0 20px rgba(197, 160, 89, 0.05);
}

.notifications-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    position: relative;
}

.notifications-header__icon-wrap {
    position: relative;
}

.notifications-header__icon {
    width: 52px;
    height: 52px;
    background: rgba(197, 160, 89, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A059;
    font-size: 1.4rem;
    border: 1px solid rgba(197, 160, 89, 0.3);
    position: relative;
    z-index: 2;
}

.notifications-header__glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.2) 0%, transparent 70%);
    z-index: 1;
}

.notifications-header__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
}

.notifications-header__subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0.25rem 0 0;
}

.notifications-header__badge {
    padding: 0.35rem 0.85rem;
    background: #C5A059;
    color: #050505;
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}

.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notification-item {
    position: relative;
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notification-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(197, 160, 89, 0.4);
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.5);
}

.notification-item--unread {
    background: rgba(197, 160, 89, 0.08);
    border-color: rgba(197, 160, 89, 0.25);
}

.notification-item__icon-wrap {
    flex-shrink: 0;
}

.notification-item__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.3);
}

.notification-item__content {
    flex: 1;
    min-width: 0;
}

.notification-item__title {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.notification-item__time {
    font-size: 0.7rem;
    color: rgba(197, 160, 89, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.notification-item__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

.notification-item__status {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 8px;
    height: 8px;
    background: #C5A059;
    border-radius: 50%;
    box-shadow: 0 0 12px #C5A059;
}

.notifications-footer {
    margin-top: 2.5rem;
    text-align: center;
}

.notifications-footer__btn {
    padding: 0.85rem 1.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.notifications-footer__btn:hover {
    background: rgba(197, 160, 89, 0.2);
    border-color: #C5A059;
    color: #fff;
}

.notification-empty {
    text-align: center;
    padding: 4rem 2rem;
}

.notification-empty__icon {
    font-size: 3.5rem;
    color: rgba(197, 160, 89, 0.15);
    margin-bottom: 1.5rem;
}

.notification-empty__title {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.notification-empty__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}