:root {
    --primary-color: #8338EC;
    --primary-light: #9d5df1;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 40px rgba(0, 0, 0, 0.1);
    --radius-lg: 24px;
    --radius-md: 16px;
    --transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)),
        url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    overscroll-behavior-y: none;
}

/* Header & Nav */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navbar Brand Animation styles */
.navbar-brand {
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.02) translateY(-1px);
    filter: drop-shadow(0 4px 12px rgba(131, 56, 236, 0.1));
}

.brand-text-main {
    font-weight: 800;
    font-size: 1.55rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #8338EC 0%, #FF007F 50%, #00F0FF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shineText 4s linear infinite;
}

.brand-text-sub {
    font-weight: 400;
    font-size: 1.55rem;
    color: var(--text-dark);
    letter-spacing: -0.2px;
}

.brand-icon {
    transition: var(--transition);
}

.navbar-brand:hover .brand-icon {
    transform: rotate(5deg) scale(1.05);
}

.logo-sun {
    animation: sunPulse 3s ease-in-out infinite alternate;
    transform-origin: 16px 9px;
}

.navbar-brand:hover .logo-sun {
    animation-duration: 1s;
    /* faster pulsing on hover */
}

@keyframes shineText {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes sunPulse {
    0% {
        transform: scale(0.9) translate(0, 1px);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1) translate(0, -0.5px);
        opacity: 1;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.nav-icon img {
    width: 20px;
    height: 20px;
}

.mute-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: 20px;
    height: 20px;
    transition: var(--transition);
    flex-shrink: 0;
}

.mute-btn:hover {
    color: var(--primary-color);
}

.signin-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.signin-btn:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(131, 56, 236, 0.3);
}

/* Layout */
main {
    padding-top: 80px;
}

.page-content {
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem 2rem;
    position: relative;
}

@keyframes badgeReveal {
    0% {
        opacity: 0;
        filter: blur(8px);
        transform: translateY(-20px) scale(0.95);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
    }
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        filter: blur(12px);
        transform: translateY(35px) scale(0.97);
        clip-path: inset(0 0 100% 0);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes subtitleReveal {
    0% {
        opacity: 0;
        filter: blur(8px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes cardReveal {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(45px) scale(0.95);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1);
    }
}

.hero .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #F0E6FF;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: badgeReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
    will-change: transform, opacity, filter;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1A1A1A 0%, #4C3BCF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: titleReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.22s;
    will-change: transform, opacity, filter, clip-path;
}

.hero p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: subtitleReveal 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
    will-change: transform, opacity, filter;
}

/* Destination Cards Row */
.destinations-row {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.dest-card-wrapper {
    opacity: 0;
    animation: cardReveal 1.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: calc(0.45s + var(--card-index) * 0.08s);
    will-change: transform, opacity, filter;
}

.dest-card {
    position: relative;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
    background-color: #e2e8f0;
    content-visibility: auto;
    contain: paint;
}

.dest-card:hover {
    transform: translateY(-10px) translateZ(0);
    box-shadow: var(--shadow-medium);
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    transform: translateZ(0);
}

.dest-card:hover img {
    transform: scale(1.05) translateZ(0);
}

.dest-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.dest-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dest-card .arrow-btn {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.dest-card:hover .arrow-btn {
    background: var(--primary-color);
}

.dest-card .arrow-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--text-dark);
    transition: var(--transition);
}

.dest-card:hover .arrow-btn svg {
    fill: white;
    transform: rotate(-45deg);
}

/* Destination Page Styles */
.dest-header {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.back-btn:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}

.dest-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.dest-header h1 span {
    color: var(--primary-color);
}

.places-grid {
    max-width: 1400px;
    margin: 0 auto 6rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.place-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
    content-visibility: auto;
    contain: paint;
}

.place-card:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: var(--shadow-medium);
}

.place-img {
    height: 200px;
    overflow: hidden;
    background-color: #e2e8f0;
}

.place-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    will-change: transform;
}

.place-info {
    padding: 1.5rem;
}

.place-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.place-info h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
    padding-right: 0.5rem;
}

.place-rating {
    background-color: #FFF9E6;
    color: #F5A623;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(245, 166, 35, 0.15);
    animation: ratingPulse 2s infinite ease-in-out;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: default;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.place-rating:hover {
    transform: scale(1.15) translateY(-3px) rotate(2deg);
    box-shadow: 0 8px 15px rgba(245, 166, 35, 0.3);
    animation: none;
    background-color: #FFF1C1;
}

@keyframes ratingPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(245, 166, 35, 0.15);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 5px 12px rgba(245, 166, 35, 0.25);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(245, 166, 35, 0.15);
    }
}

.star-icon {
    display: inline-block;
    animation: starRock 1s infinite ease-in-out;
    transform-origin: bottom center;
}

@keyframes starRock {
    0% {
        transform: rotate(-25deg);
    }

    50% {
        transform: rotate(25deg);
    }

    100% {
        transform: rotate(-25deg);
    }
}

.place-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.place-meta {
    margin-top: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.12);
    padding-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.meta-item.season {
    color: #2D9596;
}

.meta-item.time {
    color: var(--primary-color);
}

.meta-icon {
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.best-food-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 0.75rem;
    margin-bottom: 1.25rem;
}

.best-food-box img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.best-food-title {
    font-size: 0.72rem;
    color: #16A34A !important;
    /* Green accent */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.1rem;
}

.best-food-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #2D3748;
}

/* Premium Single-Card Food Slider */
.best-food-slider-wrapper {
    margin-top: 0.75rem;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
}

.best-food-slider-card {
    display: flex;
    align-items: center;
    background: #F0FDF4 !important;
    /* Light green background */
    border: 1px solid #BBF7D0 !important;
    /* Light green border */
    border-radius: 16px;
    padding: 0.6rem 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    position: relative;
    height: 76px;
    /* Fixed height to avoid layout shift when changing food */
}

.best-food-slider-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(22, 163, 74, 0.15);
    /* Green shadow */
    border-color: rgba(22, 163, 74, 0.4);
    /* Green border hover */
}

.food-slider-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.food-slider-content.sliding-out {
    animation: foodSlideOutLeft 0.35s forwards cubic-bezier(0.4, 0, 1, 1);
}

.food-slider-content.sliding-in {
    animation: foodSlideInRight 0.35s forwards cubic-bezier(0, 0, 0.2, 1);
}

.food-slider-content.sliding-out-right {
    animation: foodSlideOutRight 0.35s forwards cubic-bezier(0.4, 0, 1, 1);
}

.food-slider-content.sliding-in-left {
    animation: foodSlideInLeft 0.35s forwards cubic-bezier(0, 0, 0.2, 1);
}

@keyframes foodSlideOutLeft {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50px);
        opacity: 0;
    }
}

@keyframes foodSlideInRight {
    0% {
        transform: translateX(50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes foodSlideOutRight {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(50px);
        opacity: 0;
    }
}

@keyframes foodSlideInLeft {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.slider-nav-btn {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(22, 163, 74, 0.2) !important;
    /* Green border */
    color: #16A34A !important;
    /* Green text */
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.4rem;
    z-index: 5;
    transition: all 0.2s ease;
    line-height: 1;
    padding-bottom: 2px;
    flex-shrink: 0;
}

.slider-nav-btn:hover {
    background: #16A34A !important;
    /* Green background hover */
    color: white !important;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(22, 163, 74, 0.2) !important;
    /* Green shadow hover */
}

.slider-nav-btn.prev {
    margin-right: 0.5rem;
}

.slider-nav-btn.next {
    margin-left: 0.5rem;
}

.food-slider-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.food-slider-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.food-slider-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: #15803D !important;
    /* Dark green */
    margin-bottom: 0.1rem;
}

.food-slider-price {
    font-size: 0.8rem;
    color: #16A34A !important;
    /* Medium green */
    font-weight: 700;
}

/* Food Details Popup Modal */
.food-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 11000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.food-popup-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    width: 90%;
    max-width: 380px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.food-popup-overlay.active .food-popup-card {
    transform: scale(1) translateY(0);
}

.food-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: bold;
    z-index: 10;
    transition: all 0.3s ease;
}

.food-popup-close:hover {
    background: #16A34A;
    transform: rotate(90deg);
}

.food-popup-img {
    height: 240px;
    width: 100%;
    overflow: hidden;
    background: #e2e8f0;
    position: relative;
}

.popup-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 2rem;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    line-height: 1;
    padding-bottom: 4px;
    /* Align vertically */
}

.popup-nav-btn:hover {
    background: #16A34A;
    transform: translateY(-50%) scale(1.1);
}

.popup-nav-btn.prev {
    left: 1rem;
}

.popup-nav-btn.next {
    right: 1rem;
}

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

.food-popup-info {
    padding: 1.5rem;
    text-align: center;
}

.food-popup-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
    color: #2D3748;
}

.food-popup-price-tag {
    display: inline-block;
    background: #F0FDF4;
    color: #16A34A;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.4rem 1.4rem;
    border-radius: 50px;
    border: 1px solid #BBF7D0;
    margin-top: 0.5rem;
}

.popup-food-card:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 8px rgba(22, 163, 74, 0.15);
    border-color: rgba(22, 163, 74, 0.4) !important;
}

/* Marquee Slideshow Keyframes & Interactions */
.popup-scroller {
    position: relative;
    overflow: hidden;
}

.popup-scroller-inner {
    display: inline-flex;
    gap: 0.75rem;
    animation: marquee 12s linear infinite;
}

.popup-scroller:hover .popup-scroller-inner {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.scroller-nav-btn {
    background: rgba(22, 163, 74, 0.08);
    border: none;
    color: #16A34A;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.2s;
    flex-shrink: 0;
    outline: none;
}

.scroller-nav-btn:hover {
    background: #16A34A;
    color: white;
}


.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF6B6B 100%);
    color: white !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.55rem 1.4rem;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(131, 56, 236, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: exploreButtonPulse 1.5s infinite ease-in-out;
}

@keyframes exploreButtonPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(131, 56, 236, 0.2);
    }

    50% {
        transform: scale(1.04);
        box-shadow: 0 6px 18px rgba(131, 56, 236, 0.4), 0 0 10px rgba(255, 107, 107, 0.3);
    }
}

.explore-link:hover {
    animation: none;
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 8px 24px rgba(131, 56, 236, 0.5), 0 0 15px rgba(255, 107, 107, 0.5);
    gap: 0.8rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .destinations-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }

    .nav-actions {
        gap: 1rem !important;
    }

    .nav-actions .nav-icon:first-child {
        display: none !important;
    }

    #welcome-mute-btn {
        display: none !important;
    }

    .navbar-brand {
        gap: 0.5rem;
    }

    .brand-text-main,
    .brand-text-sub {
        font-size: 1.1rem;
        display: inline-block;
    }

    .brand-icon {
        width: 24px;
        height: 24px;
    }

    .main-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.98);
    }

    .page-content {
        animation: none !important;
    }

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

    .hero .badge,
    .hero h1,
    .hero p,
    .dest-card-wrapper {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        clip-path: none !important;
        animation: none !important;
    }

    .dest-card {
        height: auto;
        aspect-ratio: 1 / 1;
        opacity: 1;
        animation: none !important;
        transform: translateZ(0);
        will-change: transform;
    }

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

    .place-img {
        height: 130px;
    }

    .hero h1 {
        font-size: 2.25rem;
        opacity: 1;
    }

    .dest-card h3 {
        font-size: 1rem;
    }

    .place-info {
        padding: 0.75rem;
    }

    .place-info h3 {
        font-size: 1rem;
    }

    .navbar .nav-links {
        display: none;
    }

    .dest-card:hover,
    .place-card:hover,
    .category-card:hover {
        transform: translateZ(0) !important;
        box-shadow: var(--shadow-soft) !important;
    }

    .dest-card:hover img,
    .category-card:hover .category-img img {
        transform: none !important;
    }
}

/* Mangalore Categories Styles */
.categories-section {
    max-width: 1400px;
    margin: 4rem auto 6rem;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: auto;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    content-visibility: auto;
    contain: paint;
    will-change: transform;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.category-card .category-img {
    width: 100%;
    height: 100%;
}

.category-card .category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-img img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.category-card p {
    font-size: 0.95rem;
    color: #e0e0e0;
}

.empty-card {
    cursor: default;
    opacity: 0.8;
}

.empty-card:hover {
    transform: none;
    box-shadow: var(--shadow-soft);
}

.empty-card:hover .category-img img {
    transform: none;
}

@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .category-card {
        height: auto;
        aspect-ratio: 1 / 1;
        border-radius: var(--radius-lg);
        transform: translateZ(0);
        will-change: transform;
    }

    .category-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
        display: block;
        text-align: left;
        padding: 0.75rem 1rem;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .category-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0;
    }

    .category-card p {
        display: none;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }
}

/* Must Watching Places Button & Modal Styles */
.must-watch-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, #FF6B6B 100%);
    background-size: 200% auto;
    color: white;
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(131, 56, 236, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: gradientShift 6s ease infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.must-watch-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity 0.3s;
}

.must-watch-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(131, 56, 236, 0.4), 0 0 20px rgba(131, 56, 236, 0.5);
}

.must-watch-btn:hover::after {
    opacity: 1;
}

.must-watch-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 8, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s;
    padding: 1.5rem;
}

.must-watch-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.must-watch-modal {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 850px;
    max-height: 85vh;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3), 0 0 100px rgba(131, 56, 236, 0.05);
    overflow-y: auto;
    padding: 2.5rem;
    transform: translateY(60px) scale(0.92);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(131, 56, 236, 0.3) transparent;
}

.must-watch-modal::-webkit-scrollbar {
    width: 6px;
}

.must-watch-modal::-webkit-scrollbar-thumb {
    background-color: rgba(131, 56, 236, 0.3);
    border-radius: 10px;
}

.must-watch-modal-overlay.active .must-watch-modal {
    transform: translateY(0) scale(1);
}

.must-watch-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
}

.must-watch-modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 60%, #FF6B6B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

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

.must-watch-close-btn {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.must-watch-close-btn:hover {
    background: rgba(131, 56, 236, 0.1);
    color: var(--primary-color);
    transform: rotate(90deg) scale(1.05);
}

/* Sequential Fade-in Swiper Styles */
.must-watch-swiper {
    width: 100%;
    padding-bottom: 3rem !important;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    opacity: 0;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

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

/* Swiper Customize styling */
.must-watch-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    transition: transform 0.4s;
}

.must-watch-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.must-watch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(131, 56, 236, 0.15);
    border-color: rgba(131, 56, 236, 0.25);
}

.must-watch-card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
    background: #e2e8f0;
}

.must-watch-card-img img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.must-watch-card:hover .must-watch-card-img img {
    transform: scale(1.08);
}

.must-watch-badges {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 5;
}

.must-watch-badge {
    background: rgba(10, 10, 15, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.must-watch-badge.rating {
    background: rgba(255, 217, 61, 0.95);
    color: var(--text-dark);
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 217, 61, 0.3);
}

.must-watch-card-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.must-watch-card-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
    transition: color 0.3s;
}

.must-watch-card:hover .must-watch-card-info h3 {
    color: var(--primary-color);
}

.must-watch-card-info .location-row {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.must-watch-card-info .location-row svg {
    color: var(--primary-color);
    animation: pulseLocation 2s infinite alternate;
}

@keyframes pulseLocation {
    to {
        transform: scale(1.2);
    }
}

.must-watch-card-info p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.must-watch-explore-btn {
    width: 100%;
    background: rgba(131, 56, 236, 0.05);
    color: var(--primary-color);
    border: 1px solid rgba(131, 56, 236, 0.18);
    padding: 0.8rem;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.must-watch-explore-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 6px 18px rgba(131, 56, 236, 0.35), 0 0 15px rgba(131, 56, 236, 0.4);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
}

.must-watch-explore-btn svg {
    transition: transform 0.3s;
}

.must-watch-explore-btn:hover svg {
    transform: translateX(4px);
}

/* Swiper buttons customization */
.must-watch-prev,
.must-watch-next {
    color: var(--primary-color) !important;
    width: 44px !important;
    height: 44px !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s !important;
}

.must-watch-prev::after,
.must-watch-next::after {
    font-size: 1.1rem !important;
    font-weight: 800 !important;
}

.must-watch-prev:hover,
.must-watch-next:hover {
    background: var(--primary-color) !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(131, 56, 236, 0.4) !important;
    transform: scale(1.05) !important;
}

.must-watch-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
    width: 20px !important;
    border-radius: 10px !important;
    transition: width 0.3s !important;
}

/* Loader Styles */
.must-watch-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 8, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.must-watch-loader-overlay.active {
    opacity: 1;
    visibility: visible;
}

.must-watch-loader {
    display: flex;
    gap: 8px;
}

.must-watch-loader span {
    width: 14px;
    height: 14px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: bouncingDots 0.6s infinite alternate;
    box-shadow: 0 0 10px var(--primary-color);
}

.must-watch-loader span:nth-child(2) {
    animation-delay: 0.2s;
    background-color: var(--primary-light);
    box-shadow: 0 0 10px var(--primary-light);
}

.must-watch-loader span:nth-child(3) {
    animation-delay: 0.4s;
    background-color: #FF6B6B;
    box-shadow: 0 0 10px #FF6B6B;
}

@keyframes bouncingDots {
    to {
        transform: translateY(-16px);
    }
}

/* Custom utility classes for responsive header */
.dest-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.dest-header-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.famous-food-header-card {
    width: 250px;
    height: auto;
    aspect-ratio: 1/1;
    z-index: 10;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive Layout Adjustments */
@media (max-width: 1024px) {
    .destinations-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        padding: 0 1.5rem;
    }

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

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .dest-header-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        gap: 1.5rem;
        position: relative;
    }

    .dest-header {
        position: relative;
        padding: 1.5rem 1rem 1.5rem;
        min-height: 200px;
    }

    .back-btn {
        margin: 0 !important;
        align-self: flex-start;
    }

    .dest-header-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        width: 100%;
        max-width: calc(100% - 175px);
        align-self: flex-start;
        text-align: left;
    }

    .must-watch-btn {
        padding: 0.4rem 1rem !important;
        font-size: 0.8rem !important;
    }

    .must-watch-btn .btn-arrow {
        width: 20px !important;
        height: 20px !important;
        font-size: 0.75rem !important;
        margin-left: 6px !important;
    }

    .hide-mobile {
        display: none !important;
    }

    .show-mobile-inline {
        display: inline-block !important;
    }

    .famous-food-header-card {
        position: absolute;
        top: 1.5rem;
        right: 1rem;
        width: 155px;
        height: 155px;
        margin: 0 !important;
        z-index: 100;
        border-radius: var(--radius-md) !important;
    }

    .famous-food-header-card .category-overlay {
        padding: 0.5rem;
        border-radius: var(--radius-md) !important;
    }

    .famous-food-header-card h3 {
        font-size: 0.95rem !important;
    }

    .famous-food-header-card .swiper-slide div[style*="position: absolute"] {
        bottom: 6px !important;
        left: 6px !important;
        top: auto !important;
        right: auto !important;
        padding: 2px 6px !important;
        font-size: 0.6rem !important;
        border-radius: 8px !important;
    }

    .famous-food-header-card .food-favorite-icon-badge {
        top: 6px !important;
        right: 6px !important;
        width: 28px !important;
        height: 28px !important;
    }

    .famous-food-header-card .food-favorite-icon-badge svg {
        width: 14px !important;
        height: 14px !important;
    }

    .dest-header h1 {
        font-size: 2.25rem;
    }

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

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

    .must-watch-modal-overlay {
        padding: 1.5rem 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .must-watch-modal {
        padding: 1.25rem;
        /* More space for content */
        max-height: 88vh;
        width: 92%;
        max-width: 480px;
        /* Floating, centered layout */
        margin: 0 auto;
        overscroll-behavior-y: contain;
    }

    .must-watch-modal-header {
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
    }

    .must-watch-modal-header h2 {
        font-size: 1.4rem;
    }

    .must-watch-card-img {
        height: 170px;
    }

    .must-watch-card-info {
        padding: 1.25rem;
    }

    .must-watch-card-info h3 {
        font-size: 1.2rem;
    }

    .must-watch-card-info p {
        margin-bottom: 1.25rem;
        -webkit-line-clamp: 2;
        /* Save space on mobile screens */
    }

    .must-watch-prev,
    .must-watch-next {
        display: none !important;
        /* Hide arrows on touch screens */
    }

    .mangaluru-route-pane {
        padding: 1rem;
        margin-top: 0.5rem;
    }
}

@media (max-width: 580px) {
    .must-watch-badges {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
        top: 0.75rem;
        left: 0.75rem;
        right: 0.75rem;
    }

    .must-watch-badge {
        padding: 0.35rem 0.75rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .navbar-brand {
        gap: 0;
    }

    .brand-text-main,
    .brand-text-sub {
        font-size: 1.15rem;
        display: inline-block;
    }

    .brand-icon {
        display: none !important;
    }

    .nav-actions .nav-icon:first-child {
        display: none !important;
    }

    #welcome-mute-btn {
        display: none !important;
    }

    .signin-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

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

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .destinations-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        padding: 0 0.75rem !important;
    }

    .dest-card h3 {
        font-size: 0.9rem;
    }

    .dest-card-overlay {
        padding: 0.75rem;
    }

    .dest-card .arrow-btn {
        width: 32px;
        height: 32px;
        bottom: 0.75rem;
        right: 0.75rem;
    }

    .dest-card .arrow-btn svg {
        width: 14px;
        height: 14px;
    }

    .dest-header {
        padding: 1.5rem 1rem 1.5rem;
        min-height: 200px;
    }

    .dest-header h1 {
        font-size: 1.75rem;
    }

    /* Compact single column layout for place cards in phone view */
    .places-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 1rem;
    }

    .place-img {
        height: 160px;
    }

    .place-info {
        padding: 1.1rem;
    }

    .place-info h3 {
        font-size: 1.15rem;
    }

    .place-info p {
        font-size: 0.9rem;
        -webkit-line-clamp: 3;
        margin-bottom: 1.1rem;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        padding: 0 0.75rem !important;
    }

    .category-card h3 {
        font-size: 1rem;
    }

    /* Highly Compact Timeline Nodes on phones */
    .mangaluru-route-map {
        padding-left: 1.5rem;
        margin-left: 0.5rem;
        margin-top: 1rem;
    }

    .route-node .node-dot {
        left: -35px;
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    .route-node .node-content {
        padding: 0.4rem 0.75rem;
        border-radius: 10px;
    }

    .route-node h4 {
        font-size: 0.85rem;
    }

    .node-best-time {
        font-size: 0.7rem;
    }

    .route-detour-btn {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
        margin-top: 0.3rem;
    }

    .route-distance-label {
        margin: 0.25rem 0 0.5rem 0.15rem;
        gap: 0.5rem;
    }

    .route-distance-label .dist-pill {
        padding: 0.15rem 0.45rem;
        font-size: 0.7rem;
    }

    .route-distance-label .time-pills {
        padding: 0.15rem 0.45rem;
        font-size: 0.7rem;
    }

    /* Floating card modal phone overrides */
    .must-watch-modal {
        width: 92%;
        max-width: 400px;
        /* Perfectly compact centered card on phone screen */
        padding: 1rem;
        max-height: 86vh;
    }

    .must-watch-card-img {
        height: 140px;
        /* Shorter image height for perfect phone layout ratio */
    }

    .must-watch-card-info {
        padding: 1rem;
    }

    .must-watch-card-info h3 {
        font-size: 1.15rem;
        margin-bottom: 0.4rem;
    }

    .must-watch-card-info .location-row {
        margin-bottom: 0.6rem;
    }

    .must-watch-card-info p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        -webkit-line-clamp: 2;
    }

    .must-watch-explore-btn {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
}

/* Interactive Route Map Styles */
.mangaluru-modal-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 2rem;
    align-items: flex-start;
}

.mangaluru-carousel-pane {
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.mangaluru-route-pane {
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.4);
    height: 100%;
}

.mangaluru-route-pane h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.mangaluru-route-map {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 2rem;
    margin-left: 0.75rem;
    border-left: 2px dashed rgba(131, 56, 236, 0.25);
    margin-top: 1.5rem;
}

.route-line-animated {
    position: absolute;
    left: -2px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-color), #FF6B6B, transparent);
    background-size: 100% 200%;
    animation: animateRouteLine 3s linear infinite;
    pointer-events: none;
}

@keyframes animateRouteLine {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 0% 200%;
    }
}

.route-node {
    position: relative;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.route-node .node-dot {
    position: absolute;
    left: -43px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    border: 2.5px solid var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--shadow-soft);
    z-index: 2;
}

.route-node.active .node-dot {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 10px var(--primary-color), 0 0 20px rgba(131, 56, 236, 0.5);
    transform: scale(1.15);
}

.route-node .node-content {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.6rem 1rem;
    border-radius: 12px;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.route-node.active .node-content {
    background: white;
    border-color: rgba(131, 56, 236, 0.35);
    box-shadow: var(--shadow-medium);
    transform: translateX(6px);
}

.route-node h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    transition: color 0.3s;
}

.route-node.active h4 {
    color: var(--primary-color);
    font-weight: 700;
}

.node-best-time {
    display: block;
    font-size: 0.76rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.2rem;
}

/* Touch-friendly detour pill design for all devices */
.route-detour-btn {
    display: inline-block;
    font-size: 0.75rem;
    color: #FF6B6B;
    font-weight: 600;
    margin-top: 0.4rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: rgba(255, 107, 107, 0.08);
    padding: 0.25rem 0.6rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 107, 0.15);
}

.route-detour-btn:hover {
    color: white !important;
    background: #FF6B6B;
    border-color: #FF6B6B;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.25);
}

.route-distance-label {
    margin: 0.4rem 0 0.8rem 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    animation: fadeInDistance 0.5s ease-out;
}

@keyframes fadeInDistance {
    from {
        opacity: 0;
        transform: translateX(-5px);
    }

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

.route-distance-label .dist-pill {
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(131, 56, 236, 0.08);
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
    font-size: 0.75rem;
    border: 1px solid rgba(131, 56, 236, 0.12);
}

.route-distance-label .time-pills {
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.03);
    padding: 0.25rem 0.65rem;
    border-radius: 20px;
}

@media (max-width: 900px) {
    .mangaluru-modal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mangaluru-route-pane {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
}

/* Styling for Geolocation Modal */
.geo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.geo-modal-overlay.active {
    opacity: 1;
}

.geo-modal {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
    border-radius: 24px;
    padding: 2.5rem;
    width: 90%;
    max-width: 480px;
    transform: scale(0.85);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dark-mode .geo-modal {
    background: rgba(26, 26, 26, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.geo-modal-overlay.active .geo-modal {
    transform: scale(1);
}

.geo-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.geo-modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8338EC, #FF007F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.geo-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
    padding: 4px;
}

.geo-close-btn:hover {
    color: #FF6B6B;
}

.geo-modal-body {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.geo-location-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.dark-mode .geo-location-row {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.geo-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(131, 56, 236, 0.1);
    color: #8338EC;
    flex-shrink: 0;
}

.geo-icon-wrapper.destination {
    background: rgba(255, 107, 107, 0.1);
    color: #FF6B6B;
}

.geo-details {
    display: flex;
    flex-direction: column;
}

.geo-details span.label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.geo-details span.value {
    font-size: 0.95rem;
    font-weight: 600;
}

.geo-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.geo-stat-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.dark-mode .geo-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.geo-stat-card .stat-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.geo-stat-card .stat-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: #8338EC;
}

.geo-stat-card .stat-label {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 2px;
}

.geo-action-btn {
    background: linear-gradient(135deg, #8338EC, #FF6B6B);
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(131, 56, 236, 0.25);
    transition: all 0.3s ease;
    width: 100%;
}

.geo-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(131, 56, 236, 0.35);
}

/* Toast Notification Styles */
.geo-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(255, 107, 107, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2rem;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.3);
    z-index: 100000;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.geo-toast.active {
    transform: translateX(-50%) translateY(0);
}

/* Google Maps-style Place Details Drawer */
.gmaps-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    justify-content: flex-end;
    /* Right side drawer */
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gmaps-drawer-overlay.active {
    opacity: 1;
}

.gmaps-drawer {
    width: 100%;
    max-width: 480px;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.dark-mode .gmaps-drawer {
    background: rgba(20, 20, 20, 0.95);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
}

.gmaps-drawer-overlay.active .gmaps-drawer {
    transform: translateX(0);
}

.gmaps-drawer-header {
    position: relative;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.4);
}

.dark-mode .gmaps-drawer-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(20, 20, 20, 0.4);
}

.gmaps-drawer-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.gmaps-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gmaps-close-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #FF6B6B;
}

.dark-mode .gmaps-close-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.gmaps-drawer-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

/* Image/Photo Gallery */
.gmaps-photos-gallery {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
}

.gmaps-photos-gallery::-webkit-scrollbar {
    height: 4px;
}

.gmaps-photos-gallery::-webkit-scrollbar-thumb {
    background: rgba(131, 56, 236, 0.2);
    border-radius: 4px;
}

.gmaps-photo-card {
    flex: 0 0 200px;
    height: 130px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gmaps-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gmaps-photo-card:hover img {
    transform: scale(1.05);
}

/* Rating Card Visualizer */
.gmaps-rating-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 1.5rem;
    align-items: center;
}

.dark-mode .gmaps-rating-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gmaps-rating-score-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gmaps-rating-score {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: #8338EC;
    background: linear-gradient(135deg, #8338EC, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gmaps-rating-stars {
    margin: 0.5rem 0 0.25rem 0;
    color: #FFB020;
    display: flex;
    gap: 2px;
}

.gmaps-main-rating-stars {
    color: #8338EC !important;
    display: flex;
    gap: 4px;
    justify-content: center;
}

.gmaps-main-rating-stars svg {
    width: 20px !important;
    height: 20px !important;
    color: #8338EC !important;
}


.gmaps-rating-count {
    font-size: 0.8rem;
    color: var(--text-light);
}

.gmaps-rating-distribution {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gmaps-distribution-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
}

.gmaps-distribution-label {
    width: 10px;
    font-weight: 600;
    text-align: right;
}

.gmaps-distribution-bar-bg {
    flex-grow: 1;
    height: 8px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.dark-mode .gmaps-distribution-bar-bg {
    background: rgba(255, 255, 255, 0.1);
}

.gmaps-distribution-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #8338EC, #FF6B6B);
    border-radius: 4px;
    width: 0;
    transition: width 1s ease-out;
}

/* Info Grid List */
.gmaps-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gmaps-info-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.gmaps-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(131, 56, 236, 0.1);
    color: #8338EC;
    flex-shrink: 0;
}

.gmaps-info-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.9rem;
}

.gmaps-info-details .label {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gmaps-info-details a.value {
    color: #8338EC;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.gmaps-info-details a.value:hover {
    text-decoration: underline;
}

.gmaps-status-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.gmaps-status-badge.open {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
}

.gmaps-status-badge.closed {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.gmaps-hours-dropdown {
    margin-top: 4px;
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Reviews List Section */
.gmaps-reviews-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.gmaps-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.gmaps-review-card {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    padding: 1rem;
}

.dark-mode .gmaps-review-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.gmaps-review-author-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.gmaps-review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(131, 56, 236, 0.1);
}

.gmaps-review-author-info {
    display: flex;
    flex-direction: column;
}

.gmaps-review-author-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.gmaps-review-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-light);
}

.gmaps-review-stars {
    color: #FFB020;
    display: flex;
    gap: 1px;
}

.gmaps-review-text {
    font-size: 0.85rem;
    line-height: 1.4;
    white-space: pre-line;
}

/* API Setup Required Fallback Container */
.gmaps-setup-card {
    border: 1.5px dashed rgba(131, 56, 236, 0.4);
    border-radius: 20px;
    background: rgba(131, 56, 236, 0.03);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gmaps-setup-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gmaps-setup-badge {
    background: rgba(131, 56, 236, 0.15);
    color: #8338EC;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.gmaps-setup-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: #8338EC;
}

.gmaps-setup-desc {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-light);
}

.gmaps-setup-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
}

.gmaps-setup-step {
    display: flex;
    gap: 10px;
}

.gmaps-setup-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #8338EC;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.gmaps-code-box {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 8px 12px;
    font-family: monospace;
    font-size: 0.8rem;
    margin-top: 4px;
    word-break: break-all;
}

.dark-mode .gmaps-code-box {
    background: rgba(255, 255, 255, 0.08);
}

/* Instagram-style double-tap favorite foods animation & layout */
.favorite-foods-container {
    margin-top: 2rem;
}

.favorite-food-card {
    background: var(--card-bg, #ffffff);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.favorite-food-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(245, 166, 35, 0.2);
}

.food-swiper-img-wrapper {
    position: relative;
    flex: 1;
    overflow: hidden;
    width: 100%;
}

.favorite-food-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
    transition: transform 0.5s ease;
}

.favorite-food-card:hover img {
    transform: scale(1.08);
}

.food-favorite-icon-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5;
}

.food-favorite-icon-badge:hover {
    transform: scale(1.15);
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.4);
}

.food-favorite-icon-badge:active {
    transform: scale(0.9);
}

.double-tap-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    pointer-events: none;
    z-index: 10;
}

.double-tap-text {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    /* Reduced to very small as requested */
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #0b1a30;
    text-shadow: 0 0 6px #ffffff, 0 0 3px #ffffff, 0 1px 3px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0.5);
    animation: doubleTapBounceFade 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    white-space: nowrap;
    text-align: center;
}

@keyframes doubleTapBounceFade {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    15% {
        opacity: 1;
        transform: scale(1.15);
    }

    30% {
        transform: scale(0.98);
    }

    45% {
        transform: scale(1.02);
    }

    60% {
        transform: scale(1);
    }

    80% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.85);
    }
}

/* Dark mode overrides */
.dark-mode .favorite-food-card {
    background: #1E293B;
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.dark-mode .favorite-food-card:hover {
    border-color: rgba(245, 166, 35, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .nav-actions {
        gap: 0.75rem !important;
    }

    .double-tap-text {
        font-size: 0.55rem;
    }
}

/* ==========================================
   Hamburger Menu & Sliding Drawer Styles
   ========================================== */

.hamburger-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
    transition: var(--transition);
}

.hamburger-bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.85, 0, 0.15, 1);
    transform-origin: center;
}

/* Morph Hamburger to X */
.hamburger-menu-btn.active .bar-1 {
    transform: translateY(7.5px) rotate(45deg);
    background-color: var(--primary-color);
}

.hamburger-menu-btn.active .bar-2 {
    opacity: 0;
    transform: scale(0);
}

.hamburger-menu-btn.active .bar-3 {
    transform: translateY(-7.5px) rotate(-45deg);
    background-color: var(--primary-color);
}

.hamburger-menu-btn:hover .hamburger-bar {
    background-color: var(--primary-color);
}

/* Drawer Overlay */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    will-change: opacity;
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Menu Drawer */
.menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1050;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    border-left: 1px solid rgba(131, 56, 236, 0.08);
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem 1.25rem 2rem;
    will-change: transform;
}

.menu-drawer.active {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.drawer-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #8338EC 0%, #FF007F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.drawer-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.drawer-close-btn:hover {
    background-color: rgba(131, 56, 236, 0.08);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.drawer-nav {
    flex-grow: 1;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.drawer-nav::-webkit-scrollbar {
    display: none;
}

.drawer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.drawer-menu-item {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Stagger animation on active */
.menu-drawer.active .drawer-menu-item {
    opacity: 1;
    transform: translateX(0);
    transition-delay: calc(var(--item-index) * 0.08s + 0.1s);
}

.drawer-menu-item a {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 16px;
    background: transparent;
    border: 1px solid transparent;
    transition: var(--transition);
}

.menu-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background-color: rgba(131, 56, 236, 0.05);
    color: var(--primary-color);
    margin-right: 1rem;
    transition: var(--transition);
}

.menu-item-text {
    flex-grow: 1;
    transition: var(--transition);
}

.menu-item-arrow {
    display: flex;
    align-items: center;
    color: var(--text-light);
    opacity: 0.5;
    transition: var(--transition);
}

/* Hover item state */
.drawer-menu-item a:hover {
    background-color: var(--bg-white);
    border-color: rgba(131, 56, 236, 0.15);
    box-shadow: 0 10px 25px rgba(131, 56, 236, 0.06);
    transform: translateY(-2px);
}

.drawer-menu-item a:hover .menu-item-icon {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: scale(1.1) rotate(5deg);
}

.drawer-menu-item a:hover .menu-item-text {
    color: var(--primary-color);
    padding-left: 4px;
}

.drawer-menu-item a:hover .menu-item-arrow {
    color: var(--primary-color);
    opacity: 1;
    transform: translateX(5px);
}

.drawer-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 2rem;
    margin-top: auto;
}

.drawer-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.drawer-footer-text {
    font-size: 0.8rem;
    color: var(--text-light);
    opacity: 0.8;
}

/* ==========================================
   Interactive Content Modals
   ========================================== */

.menu-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 1.5rem;
}

.menu-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.menu-modal {
    position: relative;
    width: 100%;
    max-width: 650px;
    max-height: 85vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.menu-modal-overlay.active .menu-modal {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.menu-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.5);
}

.menu-modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.menu-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.menu-modal-close:hover {
    background-color: rgba(244, 63, 94, 0.08);
    color: #F43F5E;
    transform: rotate(90deg);
}

.menu-modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex-grow: 1;
    overscroll-behavior-y: contain;
}

/* About Us View styles */
.about-view {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-header {
    text-align: center;
    margin-bottom: 1rem;
}

.about-header h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.about-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

@media (min-width: 550px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-card.full-width {
        grid-column: span 2;
    }
}

.about-card {
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.menu-modal-overlay.active .about-card {
    opacity: 1;
    transform: translateY(0);
}

.about-card:nth-child(1) {
    transition-delay: 0.1s;
}

.about-card:nth-child(2) {
    transition-delay: 0.2s;
}

.about-card:nth-child(3) {
    transition-delay: 0.3s;
}

.about-card:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-soft);
    border-color: rgba(131, 56, 236, 0.1);
    transform: translateY(-5px);
}

.about-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(131, 56, 236, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-weight: bold;
}

.about-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.about-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* FAQ Accordion styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    background: var(--bg-light);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    user-select: none;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
    background-color: rgba(131, 56, 236, 0.02);
}

.faq-arrow {
    display: flex;
    align-items: center;
    color: var(--text-light);
    transition: transform 0.4s cubic-bezier(0.85, 0, 0.15, 1);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-item.active {
    border-color: rgba(131, 56, 236, 0.15);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-soft);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.4s ease;
}

.faq-answer-inner {
    padding: 0 1.25rem 1.25rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Support Form styles */
.support-form-container {
    width: 100%;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    background: var(--bg-light);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(131, 56, 236, 0.1);
}

/* Form Submit Button and Animations */
.submit-btn-container {
    margin-top: 0.5rem;
}

.support-submit-btn {
    position: relative;
    width: 100%;
    padding: 0.9rem;
    border-radius: 12px;
    border: none;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.support-submit-btn:hover {
    background: var(--primary-light);
    box-shadow: 0 8px 20px rgba(131, 56, 236, 0.25);
    transform: translateY(-2px);
}

.support-submit-btn:active {
    transform: translateY(0);
}

/* Loading & Success States */
.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: btnSpin 1s linear infinite;
}

.btn-success-check {
    display: none;
    width: 22px;
    height: 22px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-success-check svg {
    stroke-dasharray: 24;
    stroke-dashoffset: 24;
    animation: drawCheck 0.4s ease-out forwards 0.2s;
}

@keyframes btnSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.support-submit-btn.loading {
    pointer-events: none;
    background-color: var(--primary-light);
}

.support-submit-btn.loading .btn-text {
    opacity: 0.6;
}

.support-submit-btn.loading .btn-loader {
    display: block;
}

.support-submit-btn.success {
    pointer-events: none;
    background-color: #10B981;
    /* Green */
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.support-submit-btn.success .btn-text,
.support-submit-btn.success .btn-loader {
    display: none;
}

.support-submit-btn.success .btn-success-check {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

/* Terms & Conditions scroll tracking progress bar */
.terms-progress-container {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.05);
    z-index: 10;
    margin-bottom: 1.5rem;
}

.terms-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #8338EC, #FF007F);
    transition: width 0.1s ease-out;
}

.terms-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.terms-text h6 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.terms-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Updates Timeline styles */
.updates-timeline {
    position: relative;
    padding-left: 2rem;
    margin-left: 0.5rem;
    border-left: 2px solid rgba(131, 56, 236, 0.15);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.menu-modal-overlay.active .timeline-item {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:nth-child(1) {
    transition-delay: 0.1s;
}

.timeline-item:nth-child(2) {
    transition-delay: 0.2s;
}

.timeline-item:nth-child(3) {
    transition-delay: 0.3s;
}

.timeline-badge {
    position: absolute;
    left: -2.4rem;
    top: 0.25rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 3px solid var(--bg-white);
    box-shadow: 0 0 0 3px rgba(131, 56, 236, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.timeline-item:hover .timeline-badge {
    transform: scale(1.3);
    background: #FF007F;
    box-shadow: 0 0 0 5px rgba(255, 0, 127, 0.2);
}

.timeline-date {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.timeline-content {
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.timeline-content:hover {
    background: var(--bg-white);
    border-color: rgba(131, 56, 236, 0.1);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.timeline-content h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--text-dark);
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ==========================================
   Hamburger Mobile Responsiveness
   ========================================== */

@media (max-width: 480px) {
    .menu-drawer {
        width: 100%;
        padding: 1.5rem;
    }

    .drawer-header {
        margin-bottom: 2rem;
    }

    .menu-modal {
        max-height: 90vh;
        border-radius: var(--radius-md);
    }

    .menu-modal-header {
        padding: 1rem 1.5rem;
    }

    .menu-modal-body {
        padding: 1.5rem;
    }

    .about-header h4 {
        font-size: 1.15rem;
    }
}

/* ==========================================
   Header Viewport Safety & Prominent Sign In Style
   ========================================== */

.navbar-brand {
    flex-shrink: 0 !important;
    max-width: 70%;
}

.nav-actions {
    flex-shrink: 0 !important;
}

.drawer-signin-link {
    background: rgba(131, 56, 236, 0.04) !important;
    border: 1px dashed rgba(131, 56, 236, 0.2) !important;
}

.drawer-signin-link:hover {
    background: rgba(131, 56, 236, 0.08) !important;
    border-color: rgba(131, 56, 236, 0.35) !important;
    transform: translateY(-2px);
}

/* ==========================================
   Sign In & Sign Up Auth Tabs and Pane transitions
   ========================================== */

.auth-tabs {
    display: flex;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 1.75rem;
    position: relative;
}

.auth-tab {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-light);
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    transition: var(--transition);
}

.auth-tab.active {
    color: var(--primary-color);
}

.auth-tab-indicator {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50%;
    height: 2px;
    background: var(--primary-color);
    transition: transform 0.4s cubic-bezier(0.85, 0, 0.15, 1);
}

.auth-forms-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.auth-forms-wrapper {
    display: flex;
    width: 200%;
    transition: transform 0.5s cubic-bezier(0.85, 0, 0.15, 1);
}

.auth-form-pane {
    width: 50%;
    transition: opacity 0.4s ease;
}

.auth-form-pane.inactive {
    opacity: 0;
    pointer-events: none;
}

.auth-checkbox-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-top: -0.25rem;
    margin-bottom: 0.25rem;
}

.checkbox-label-container {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    color: var(--text-light);
}

.auth-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.auth-link:hover {
    color: var(--primary-light);
}

/* About Us Tag Styles & Custom Text Pattern */
.about-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(131, 56, 236, 0.06);
    color: var(--primary-color);
    border: 1px solid rgba(131, 56, 236, 0.1);
}

.about-tag:hover {
    transform: translateY(-2px);
    background: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 10px rgba(131, 56, 236, 0.2);
}

.about-tag.destination {
    background: rgba(255, 0, 127, 0.06);
    color: #FF007F;
    border-color: rgba(255, 0, 127, 0.1);
}

.about-tag.destination:hover {
    background: #FF007F;
    color: var(--bg-white);
    box-shadow: 0 4px 10px rgba(255, 0, 127, 0.2);
}

.about-tag.category {
    background: rgba(0, 180, 216, 0.06);
    color: #00B4D8;
    border-color: rgba(0, 180, 216, 0.1);
}

.about-tag.category:hover {
    background: #00B4D8;
    color: var(--bg-white);
    box-shadow: 0 4px 10px rgba(0, 180, 216, 0.2);
}

/* Enhancing About Us Cards with subtle backgrounds & gradients */
.about-card.pattern-grid {
    position: relative;
    overflow: hidden;
}

.about-card.pattern-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-color) 0.75px, transparent 0.75px);
    background-size: 12px 12px;
    opacity: 0.04;
    pointer-events: none;
}

.about-card.pattern-dest::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#FF007F 0.75px, transparent 0.75px);
    background-size: 12px 12px;
    opacity: 0.04;
    pointer-events: none;
}

.about-card-highlight-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.6;
    border-left: 3px solid var(--primary-color);
    padding-left: 0.75rem;
    margin-bottom: 0.75rem;
    font-style: italic;
}

/* Premium gradient overlay for About Header */
.about-header h4 {
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF007F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 1.55rem;
    display: inline-block;
}

/* Version History Accordion Blur Effect */
.faq-item {
    transition: border-color 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

/* Headings are always bright, clear, and unblurred */
.faq-item .faq-question {
    filter: none !important;
    opacity: 1 !important;
}

/* Contents are fully blurred when not active */
.faq-item:not(.active) .faq-answer {
    filter: blur(5px) !important;
    opacity: 0.35 !important;
}

.faq-item.active .faq-answer {
    filter: none !important;
    opacity: 1 !important;
}

/* Updates Timeline Interactive Blur Effect */
.timeline-item {
    cursor: pointer;
}

/* Dates and badges are always bright, clear, and unblurred */
.timeline-item .timeline-date,
.timeline-item .timeline-badge {
    filter: none !important;
    opacity: 1 !important;
}

/* Content cards are fully blurred when inactive */
.timeline-item.inactive .timeline-content {
    filter: blur(5px) !important;
    opacity: 0.35 !important;
}

.timeline-item.active .timeline-content {
    filter: none !important;
    opacity: 1 !important;
}

/* Override transition delays on click interactions */
.timeline-item.active,
.timeline-item.inactive {
    transition-delay: 0s !important;
}

/* About Us Row Layout */
.about-row-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
}

.about-row-item {
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.menu-modal-overlay.active .about-row-item {
    opacity: 1;
    transform: translateY(0);
}

.about-row-item:nth-child(1) {
    transition-delay: 0.1s;
}

.about-row-item:nth-child(2) {
    transition-delay: 0.18s;
}

.about-row-item:nth-child(3) {
    transition-delay: 0.26s;
}

.about-row-item:nth-child(4) {
    transition-delay: 0.34s;
}

.about-row-item:nth-child(5) {
    transition-delay: 0.42s;
}

.about-row-item:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-soft);
    border-color: rgba(131, 56, 236, 0.1);
    transform: translateY(-2px);
}

.about-row-item .about-card-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.about-row-item-body {
    flex-grow: 1;
}

.about-row-item-body h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.about-row-item-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Red Lock Alert Popup */
.lock-popup-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(230, 57, 70, 0.95);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.lock-popup-notification.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    animation: popup-shake 0.4s ease-in-out;
}

@keyframes popup-shake {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    20%,
    60% {
        transform: translate(-52%, -50%) scale(1) rotate(-1deg);
    }

    40%,
    80% {
        transform: translate(-48%, -50%) scale(1) rotate(1deg);
    }
}

/* Button Arrow Highlight & Attention-Seeking Animations */
.geo-action-btn .btn-arrow,
.must-watch-btn .btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    margin-left: 8px;
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff;
    line-height: 1;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: arrowPulseSlide 0.6s infinite ease-in-out;
}

@keyframes arrowPulseSlide {

    0%,
    100% {
        transform: translateX(0) scale(1);
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
    }

    50% {
        transform: translateX(6px) scale(1.12);
        box-shadow: 0 0 14px rgba(255, 255, 255, 0.45);
    }
}

.geo-action-btn:hover .btn-arrow,
.must-watch-btn:hover .btn-arrow {
    animation: none;
    /* Pause the pulse-slide animation on hover */
    transform: scale(1.18) translateX(6px);
    background: #ffffff;
    color: #8338EC;
    /* Brand purple */
    border-color: #ffffff;
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.8), 0 0 30px rgba(131, 56, 236, 0.4);
}

/* ==========================================================================
   AUTHENTICATION & USER PORTAL STYLES
   ========================================================================== */

/* Navbar Button Styling */
.auth-nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #8338EC 0%, #FF007F 100%);
    /* Brand purple-pink gradient */
    border: none;
    color: #ffffff;
    /* White text for great legibility */
    padding: 8px 18px;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 12px rgba(131, 56, 236, 0.25);
}

.auth-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(131, 56, 236, 0.4);
    filter: brightness(1.08);
    /* Glows slightly on hover */
}

.auth-nav-btn:active {
    transform: translateY(0);
}

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

.auth-nav-btn:hover svg {
    transform: scale(1.1);
}

/* User Logged In State Styles */
.auth-nav-btn.logged-in {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.15) 0%, rgba(255, 0, 127, 0.15) 100%);
    border-color: rgba(131, 56, 236, 0.3);
}

.auth-nav-btn.logged-in::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 30px;
    background: linear-gradient(135deg, #8338EC, #FF007F);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.auth-nav-btn.logged-in:hover::before {
    opacity: 0.4;
}

/* Sign Out Dropdown Menu */
.auth-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 220px;
    background: rgba(18, 18, 22, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 12px;
    display: none;
    flex-direction: column;
    gap: 8px;
    z-index: 1000;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.auth-dropdown-menu.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.auth-dropdown-header {
    padding: 4px 8px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
}

.auth-dropdown-email {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    word-break: break-all;
    margin-top: 2px;
}

.auth-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Outfit', sans-serif;
}

.auth-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.auth-dropdown-item.signout-item {
    color: #FF4A4A;
}

.auth-dropdown-item.signout-item:hover {
    background: rgba(255, 74, 74, 0.1);
    color: #FF6B6B;
}

/* Modal Overlay Styling */
.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 12, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Modal Card Styling */
.auth-modal-card {
    background: rgba(22, 22, 28, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 90%;
    max-width: 440px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(131, 56, 236, 0.1);
    padding: 40px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.auth-modal-overlay.active .auth-modal-card {
    transform: translateY(0) scale(1);
}

/* Modal Close Button */
.auth-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transform: rotate(90deg);
}

/* Header Styling */
.auth-modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-modal-logo {
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 10px rgba(131, 56, 236, 0.3));
}

.auth-modal-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.auth-modal-header p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
    padding: 0 10px;
}

/* Inputs Groups & Fields */
.auth-input-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-input-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: left;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    font-size: 1rem;
    pointer-events: none;
    opacity: 0.7;
}

.auth-input-group input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.auth-input-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.07);
    border-color: #8338EC;
    box-shadow: 0 0 0 4px rgba(131, 56, 236, 0.15);
}

/* Error Banner */
.auth-error-banner {
    background: rgba(255, 74, 74, 0.1);
    border: 1px solid rgba(255, 74, 74, 0.2);
    color: #FF6B6B;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: authShake 0.4s ease-in-out;
}

@keyframes authShake {

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

    25% {
        transform: translateX(-6px);
    }

    75% {
        transform: translateX(6px);
    }
}

/* Submit Button */
.auth-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #8338EC 0%, #FF007F 100%);
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(131, 56, 236, 0.3);
    position: relative;
    overflow: hidden;
}

.auth-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9b5de5 0%, #f15bb5 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(131, 56, 236, 0.4);
}

.auth-submit-btn:hover::before {
    opacity: 1;
}

.auth-submit-btn:active {
    transform: translateY(0);
}

.auth-submit-btn span {
    position: relative;
    z-index: 1;
}

.auth-submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.auth-submit-btn.loading span {
    visibility: hidden;
}

.auth-submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: authSpinner 0.8s linear infinite;
    z-index: 2;
}

@keyframes authSpinner {
    to {
        transform: rotate(360deg);
    }
}

/* Modal Footer & Switch Link */
.auth-modal-footer {
    margin-top: 24px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.auth-modal-footer a {
    color: #FF007F;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.auth-modal-footer a:hover {
    color: #ff3399;
    text-decoration: underline;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .auth-modal-card {
        padding: 30px 20px;
    }
}

#auth-forgot-link:hover {
    color: #ff3399 !important;
    text-decoration: underline !important;
}