/* ========================================
   NAKHON PHANOM - Premium Tourism Website
   Inspired by Dior's Elegance
   ======================================== */

/* ========== CSS Variables ========== */
:root {
    /* Colors - Luxury Gold Theme */
    --primary: #1a1a1a;
    --secondary: #8b7355;
    --accent: #d4af37;
    --gold: #d4af37;
    --gold-light: #f4e4c1;
    --gold-dark: #b8941e;
    --bronze: #cd7f32;
    --mekong-blue: #2c5f7c;
    --white: #ffffff;
    --off-white: #faf9f6;
    --light-gray: #e8e6e1;
    --medium-gray: #9b9b9b;
    --dark-gray: #4a4a4a;
    
    /* Typography - ???????? 2 ????????????? */
    --font-heading: 'Noto Serif Thai', serif;      /* ????????????????????? */
    --font-body: 'Noto Sans Thai', sans-serif;     /* ??????????????????? */
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

/* ========== Reset & Base Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--primary);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-normal);
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

/* ========== Container & Layout ========== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========== Navigation ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition-normal);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
}

.nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.nav-logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 10px;
    filter: drop-shadow(0 2px 6px rgba(212,175,55,0.35));
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--medium-gray);
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--dark-gray);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    transition: var(--transition-normal);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--gold-dark);
    font-weight: 500;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-normal);
}

/* ========== Buttons ========== */
.btn-primary {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    /* ?? effect ??????? */
    transition: none !important;
    animation: none !important;
    transform: none !important;
    position: static !important;
    overflow: visible !important;
}

.btn-primary::before,
.btn-primary::after {
    display: none !important;
    content: none !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    transition: none !important;
    animation: none !important;
    transform: none !important;
}

.btn-primary:hover::before,
.btn-primary:hover::after {
    display: none !important;
    content: none !important;
}

.btn-secondary {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border: 1px solid var(--primary);
    transition: var(--transition-normal);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid var(--primary);
    transition: var(--transition-normal);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-normal);
}

.btn-icon:hover {
    background: var(--light-gray);
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Compact Version */
.hero-compact {
    height: 70vh;
    min-height: 500px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

/* ?????????????? Hero � ????????????????????? */
.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(0,0,0,0.4), 
        rgba(212,175,55,0.1),
        rgba(0,0,0,0.6)
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: var(--spacing-md);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    color: var(--white); /* ???????????????? */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* ??????????????????????? */
}

.hero-title {
    margin-bottom: var(--spacing-md);
    color: var(--white); /* ???????????????? */
}

.title-line {
    display: block;
    color: var(--white); /* ???????????????? */
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    opacity: 0.95;
    color: var(--white); /* ???????????????? */
}

.hero-actions {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    display: none; /* ???? scroll indicator */
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--white);
    animation: none; /* ?? animation */
    display: none; /* ???????? */
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        transform: translateY(20px);
        opacity: 1;
    }
}

/* ========== Section Styles ========== */
section {
    padding: var(--spacing-xl) 0;
}

/* Compact Sections */
.places-compact {
    padding: var(--spacing-lg) 0;
}

.experience-compact {
    padding: var(--spacing-lg) 0;
}

.culture-compact {
    padding: var(--spacing-lg) 0;
}

.culture-compact .culture-card {
    padding: var(--spacing-md);
}

.culture-compact .culture-description {
    font-size: 0.9rem;
}

.newsletter-compact {
    padding: var(--spacing-lg) 0;
}

.section-footer {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header.centered {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    display: block;
    font-weight: 600;
}

.section-title {
    margin-bottom: var(--spacing-sm);
}

/* ========== Featured Section � ???????????? Bento Grid section ???????????? ========== */

.featured-section .section-header .section-title {
    margin-bottom: 0;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

/* 3-column equal grid */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ??????????????? � ?? large span */
.featured-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    transition: var(--transition-normal);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
}

.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-light);
}

/* ?? large span ??? � ?????????????????? */
.featured-card.large {
    grid-column: span 1;
    grid-row: span 1;
}

/* ????????? 260px ???????? */
.card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.featured-card.large .card-image {
    height: 260px;
    min-height: 260px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-card:hover .card-image img {
    transform: scale(1.07);
}

/* Gold accent bar ????? */
.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    opacity: 0;
    transition: var(--transition-normal);
}

.featured-card:hover .card-image::after {
    opacity: 1;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.45));
}

/* Content ?????? */
.card-content {
    padding: 1.25rem 1.5rem 1.5rem;
}

.card-category {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.card-category::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    border-radius: 1px;
}

.card-title {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card-description {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
}

.card-link:hover {
    gap: var(--spacing-sm);
}

/* View All link ????? section */
.featured-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
    transition: var(--transition-normal);
}

.featured-view-all:hover {
    gap: 0.7rem;
    color: var(--gold);
}

/* ========== Local Food Section � Premium Redesign ========== */
.local-food-section {
    padding: 4rem 0 4.5rem;
    background: var(--off-white);
}

/* Header � ???????? */
.local-food-section .lf-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.local-food-section .lf-header .section-subtitle {
    display: block;
    margin-bottom: 0.4rem;
}

.local-food-section .lf-header .section-title {
    margin-bottom: 0;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

/* Grid 3 ??????? */
.local-food-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* ===== ????????? ===== */
.lf-card {
    position: relative;
    height: 280px;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: block;
    background: #111;
    transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1),
                box-shadow 0.35s ease;
    box-shadow: 0 6px 24px rgba(0,0,0,0.14);
}

.lf-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0,0,0,0.22);
}

/* ??????????? */
.lf-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease, filter 0.35s ease;
    filter: brightness(0.82) saturate(1.1);
}

/* placeholder ???????????????? */
.lf-card-img[src=""] {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    opacity: 0;
}

.lf-card:hover .lf-card-img {
    transform: scale(1.07);
    filter: brightness(0.72) saturate(1.15);
}

/* Gradient overlay � ????? ???????????????????? */
.lf-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(0,0,0,0.05) 0%,
        rgba(0,0,0,0.08) 50%,
        rgba(0,0,0,0.25) 100%
    );
    transition: background 0.35s ease;
    z-index: 1;
}

.lf-card:hover .lf-card-overlay {
    background: linear-gradient(
        160deg,
        rgba(0,0,0,0.08) 0%,
        rgba(0,0,0,0.15) 50%,
        rgba(0,0,0,0.35) 100%
    );
}

/* ???? accent ?????? � ???????? hover */
.lf-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: 22px 22px 0 0;
}

.lf-card:hover::after { opacity: 1; }

.lf-card.foodtruck::after  { background: linear-gradient(90deg, transparent 5%, #d4af37 40%, #f4e4a1 60%, #d4af37 80%, transparent 95%); }
.lf-card.foodtry::after    { background: linear-gradient(90deg, transparent 5%, #818cf8 40%, #c4b5fd 60%, #818cf8 80%, transparent 95%); }
.lf-card.streetfood::after { background: linear-gradient(90deg, transparent 5%, #fb923c 40%, #fcd34d 60%, #fb923c 80%, transparent 95%); }

/* Number badge ???????? � editorial style */
.lf-num-badge {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    z-index: 3;
    font-family: 'Noto Serif Thai', serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.55);
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 0.22rem 0.7rem;
    transition: color 0.3s, border-color 0.3s;
}

.lf-card:hover .lf-num-badge { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.2); }

/* Content ???????? */
.lf-card-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.5rem 1.4rem 1.3rem;
    z-index: 2;
}

/* ???? accent ??????????? */
.lf-accent-line {
    display: block;
    width: 28px;
    height: 2px;
    border-radius: 2px;
    margin-bottom: 0.65rem;
    transition: width 0.3s ease;
}

.lf-card:hover .lf-accent-line { width: 42px; }

.lf-card.foodtruck  .lf-accent-line { background: linear-gradient(90deg, #d4af37, #f4e4a1); }
.lf-card.foodtry    .lf-accent-line { background: linear-gradient(90deg, #818cf8, #c4b5fd); }
.lf-card.streetfood .lf-accent-line { background: linear-gradient(90deg, #fb923c, #fcd34d); }

/* ???????? � ???? bold */
.lf-card-title {
    font-family: 'Noto Serif Thai', serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 0.45rem;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* ???????? */
.lf-card-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.58);
    line-height: 1.55;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.lf-card:hover .lf-card-desc { color: rgba(255,255,255,0.72); }

/* ???? ?????? */
.lf-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    transition: color 0.25s, gap 0.25s;
    padding: 0;
    background: none;
    border: none;
}

.lf-card:hover .lf-card-btn { color: #fff; gap: 0.6rem; }

.lf-card-btn svg { transition: transform 0.25s; flex-shrink: 0; }
.lf-card:hover .lf-card-btn svg { transform: translateX(4px); }

/* placeholder background ???????????????? */
.lf-card.foodtruck  { background: linear-gradient(145deg, #1c1a10, #2d2510, #1a1500); }
.lf-card.foodtry    { background: linear-gradient(145deg, #0f0f1a, #1a1528, #0d0d1f); }
.lf-card.streetfood { background: linear-gradient(145deg, #1a0f08, #2d1a0a, #1a0e05); }

/* ========== Bento Grid � Featured Section ========== */
.featured-section {
    padding: 2rem 0 2.5rem;
    background: var(--off-white);
}
.featured-section .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.25rem;
}
/* ===== Disney-Style Layout ===== */
.disney-layout {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

/* Row 1 � Hero card full width */
.disney-hero {
    position: relative;
    height: 420px;
    border-radius: 18px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    text-decoration: none;
    cursor: default;
    background: #1a1a1a;
}

/* ???? � ??????? */
.disney-hero-text {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2510 100%);
    padding: 2.5rem 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.disney-hero-text::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 100%, rgba(212,175,55,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.disney-hero-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.disney-hero-title {
    font-family: 'Noto Serif Thai', serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 0.6rem;
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.disney-hero-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.disney-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    text-decoration: none;
    transition: all 0.2s;
    width: fit-content;
}

.disney-hero-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212,175,55,0.4);
}

/* ??? � ?????? */
.disney-hero-img {
    position: relative;
    overflow: hidden;
}

.disney-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.disney-hero:hover .disney-hero-img img {
    transform: scale(1.04);
}

/* Row 2 � 3 cards */
.disney-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
}

.disney-card {
    position: relative;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    cursor: pointer;
    background: #1a1a1a;
    transition: transform 0.3s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.3s ease;
}

.disney-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.disney-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: brightness(0.88) saturate(1.1);
}

.disney-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.72) saturate(1.15);
}

.disney-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.disney-card-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 0.875rem 1rem;
    z-index: 2;
}

.disney-card-label {
    display: inline-flex;
    align-items: center;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212,175,55,0.18);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 20px;
    padding: 0.15rem 0.5rem;
    margin-bottom: 0.3rem;
}

.disney-card-title {
    font-family: 'Noto Serif Thai', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
/* ========== Experience Section ========== */
.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.experience-text {
    max-width: 600px;
}

.experience-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--off-white);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.experience-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.exp-image-1,
.exp-image-2 {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.experience-compact .exp-image-1,
.experience-compact .exp-image-2 {
    height: 300px;
}

.exp-image-1 {
    grid-column: 1 / 2;
    margin-top: var(--spacing-lg);
}

.exp-image-2 {
    grid-column: 2 / 3;
}

.exp-image-1 img,
.exp-image-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== Culture Section ========== */
.culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.culture-card {
    text-align: center;
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--off-white);
    transition: var(--transition-normal);
}

.culture-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.culture-icon {
    margin: 0 auto var(--spacing-md);
    color: var(--gold);
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.culture-title {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.culture-description {
    font-size: 0.95rem;
    color: var(--dark-gray);
}

/* ========== Newsletter Section ========== */
.newsletter-section {
    background: var(--primary);
    color: var(--white);
}

.newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-lg);
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* ========== Footer ========== */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-xs);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: var(--spacing-xs);
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.footer-list a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-normal);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ========== Page Header ========== */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--mekong-blue), var(--secondary));
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.page-subtitle {
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-sm);
}

.page-description {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-card.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .featured-card.large .card-image {
        height: 260px;
        min-height: 260px;
    }
    
    .featured-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
    }
    
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-card.large {
        grid-row: span 1;
    }
    
    .featured-card.large .card-image {
        height: 240px;
        min-height: 240px;
    }
    
    .card-image {
        height: 240px;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
}


/* ========== Hero Background Image ========== */
.hero-bg-image {
    background-image: url('https://images.unsplash.com/photo-1552465011-b4e21bf6e79a?w=1920&q=80');
}

/* ========== Explore Page Styles ========== */
.filter-section {
    padding: var(--spacing-md) 0;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.filter-tabs {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--dark-gray);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--light-gray);
    transition: var(--transition-normal);
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.filter-controls {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.filter-select {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--light-gray);
    background: var(--white);
    font-size: 0.9rem;
    font-family: inherit;
    cursor: pointer;
}

.destinations-section {
    padding: var(--spacing-xl) 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.destination-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    transition: var(--transition-normal);
}

.destination-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.dest-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.dest-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover .dest-image {
    transform: scale(1.1);
}

.dest-badge {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dest-favorite {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--dark-gray);
    transition: var(--transition-normal);
}

.dest-favorite:hover {
    background: var(--white);
    color: var(--accent);
}

.dest-content {
    padding: var(--spacing-md);
}

.dest-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.dest-category {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    font-weight: 600;
}

.dest-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--gold);
    font-weight: 600;
}

.dest-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.dest-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: var(--spacing-md);
}

.dest-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: var(--spacing-md);
}

.dest-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.dest-distance {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.dest-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary);
}

.dest-link:hover {
    gap: var(--spacing-sm);
}

.load-more-section {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ========== Check-in Page Styles ========== */
.checkin-section {
    padding: var(--spacing-xl) 0;
    background: var(--off-white);
}

.checkin-card {
    background: var(--white);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
}

.checkin-form-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.form-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.form-description {
    color: var(--dark-gray);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--light-gray);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.location-search {
    position: relative;
    display: flex;
    align-items: center;
}

.location-search svg {
    position: absolute;
    left: 1rem;
    color: var(--medium-gray);
}

.location-input {
    padding-left: 3rem;
}

.location-suggestions {
    margin-top: var(--spacing-sm);
    border: 1px solid var(--light-gray);
    background: var(--white);
}

.suggestion-item {
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.suggestion-item:hover {
    background: var(--off-white);
}

.upload-area {
    border: 2px dashed var(--light-gray);
    padding: var(--spacing-xl);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.upload-area:hover {
    border-color: var(--primary);
    background: var(--off-white);
}

.upload-text {
    font-weight: 500;
    margin-top: var(--spacing-sm);
}

.upload-hint {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-top: var(--spacing-xs);
}

.file-input {
    display: none;
}

.textarea-counter {
    text-align: right;
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-top: var(--spacing-xs);
}

.rating-input {
    display: flex;
    gap: var(--spacing-xs);
}

.star-btn {
    color: var(--light-gray);
    transition: var(--transition-fast);
}

.star-btn:hover,
.star-btn.active {
    color: var(--accent);
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm);
    border: 1px solid var(--light-gray);
    min-height: 60px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.9rem;
    border-radius: 20px;
}

.tag-remove {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1;
}

.tag-input {
    flex: 1;
    border: none;
    outline: none;
    min-width: 150px;
}

.tag-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
}

.tag-suggestion {
    padding: 0.5rem 1rem;
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.tag-suggestion:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.privacy-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.radio-option {
    display: flex;
    align-items: center;
    padding: var(--spacing-md);
    border: 1px solid var(--light-gray);
    cursor: pointer;
    transition: var(--transition-normal);
}

.radio-option:hover {
    border-color: var(--primary);
    background: var(--off-white);
}

.radio-option input[type="radio"] {
    margin-right: var(--spacing-sm);
}

.radio-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.radio-title {
    font-weight: 600;
}

.radio-description {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.form-actions {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: flex-end;
}

.recent-checkins-section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.view-all-link {
    font-weight: 500;
    color: var(--primary);
}

.checkins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.checkin-item {
    background: var(--white);
    border: 1px solid var(--light-gray);
    overflow: hidden;
}

.checkin-image {
    height: 250px;
    overflow: hidden;
}

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

.checkin-content {
    padding: var(--spacing-md);
}

.checkin-user {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

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

.user-name {
    font-weight: 600;
}

.checkin-time {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.checkin-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gold-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.checkin-caption {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.checkin-stats {
    display: flex;
    gap: var(--spacing-md);
}

.stat-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    transition: var(--transition-normal);
}

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

@media (max-width: 768px) {
    .destinations-grid,
    .checkins-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
}

/* ========== Info Bar Header - Minimal & Compact ========== */
.info-bar-header {
    position: fixed;
    top: 103px; /* ????????????? Navbar */
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(26, 26, 26, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.1); /* ???????????????????????? */
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.info-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.4rem var(--spacing-md);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

.info-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.info-bar-item:hover {
    transform: translateY(-1px);
}

.info-bar-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.info-bar-item:hover .info-bar-icon {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.info-bar-icon svg {
    width: 13px;
    height: 13px;
    color: var(--gold);
    filter: drop-shadow(0 1px 2px rgba(212, 175, 55, 0.4));
}

.info-bar-content {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.info-bar-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.info-bar-label {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.7);
    font-family: var(--font-body);
    line-height: 1;
}

.info-bar-value-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
}

.info-bar-value {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #f4e4c1, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.info-bar-unit {
    font-size: 0.55rem;
    font-weight: 600;
    color: rgba(212, 175, 55, 0.6);
    font-family: var(--font-body);
}

.info-bar-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-size: 0.45rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-body);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    white-space: nowrap;
    min-width: 45px;
}

/* Circle Status Indicator */
.info-bar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.info-bar-circle:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.circle-percent {
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Circular Progress Ring - Minimal & Clean */
.info-bar-progress {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.progress-ring {
    transform: rotate(-90deg);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.progress-ring-bg {
    display: none;
}

.progress-ring-fill {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.6s ease;
    filter: drop-shadow(0 0 3px currentColor);
}

/* Progress Ring Colors */
.info-bar-progress.good .progress-ring-fill {
    stroke: #4caf50;
}

.info-bar-progress.moderate .progress-ring-fill {
    stroke: #ffc107;
}

.info-bar-progress.unhealthy .progress-ring-fill {
    stroke: #f44336;
}

.info-bar-progress.smooth .progress-ring-fill {
    stroke: #4caf50;
}

.info-bar-progress.warm .progress-ring-fill {
    stroke: #ff9800;
}

.info-bar-progress.hot .progress-ring-fill {
    stroke: #f44336;
}

.progress-percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 0.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f4e4c1, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Divider - Hidden */
.info-bar-divider {
    display: none;
}

/* Divider - Elegant */
.info-bar-divider {
    display: none;
}

.info-bar-status.good {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: #fff;
}

.info-bar-status.moderate {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #1a1a1a;
}

.info-bar-status.unhealthy {
    background: linear-gradient(135deg, #f44336, #e53935);
    color: #fff;
}

.info-bar-status.smooth {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: #fff;
}

.info-bar-status.warm {
    background: linear-gradient(135deg, #ff9800, #fb8c00);
    color: #fff;
}

.info-bar-status.hot {
    background: linear-gradient(135deg, #f44336, #e53935);
    color: #fff;
}

/* Circle Status Colors */
.info-bar-circle.good {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
}

.info-bar-circle.moderate {
    background: linear-gradient(135deg, #ffc107, #ffb300);
}

.info-bar-circle.unhealthy {
    background: linear-gradient(135deg, #f44336, #e53935);
}

.info-bar-circle.smooth {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
}

.info-bar-circle.warm {
    background: linear-gradient(135deg, #ff9800, #fb8c00);
}

.info-bar-circle.hot {
    background: linear-gradient(135deg, #f44336, #e53935);
}

.info-bar-status svg {
    width: 4px;
    height: 4px;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.info-bar-divider {
    width: 1px;
    height: 22px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(212, 175, 55, 0.3),
        transparent
    );
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .info-bar-header {
        top: 75px; /* ????????????? Navbar ?? tablet */
    }
    
    .info-bar-container {
        gap: 2rem;
        padding: 0.35rem var(--spacing-md);
    }
    
    .info-bar-icon {
        width: 22px;
        height: 22px;
    }
    
    .info-bar-icon svg {
        width: 12px;
        height: 12px;
    }
    
    .info-bar-value {
        font-size: 0.9rem;
    }
    
    .info-bar-progress {
        width: 28px;
        height: 28px;
    }
    
    .progress-percent {
        font-size: 0.45rem;
    }
    
    .hero {
        margin-top: 50px;
    }
    
    .page-header {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .info-bar-header {
        top: 65px; /* ????????????? Navbar ?? mobile */
    }
    
    .info-bar-container {
        flex-direction: column;
        gap: 0.6rem;
        padding: 0.5rem var(--spacing-sm);
    }
    
    .info-bar-item {
        width: 100%;
        max-width: 280px;
    }
    
    .hero {
        margin-top: 140px;
    }
    
    .page-header {
        margin-top: 140px;
    }
}

/* Adjust Hero Section */
.hero {
    margin-top: 55px;
}

.page-header {
    margin-top: 55px;
}

@media (max-width: 1024px) {
    .hero {
        margin-top: 80px;
    }
    
    .page-header {
        margin-top: 80px;
    }
}

@media (max-width: 768px) {
    .hero {
        margin-top: 140px;
    }
    
    .page-header {
        margin-top: 140px;
    }
}

/* ========== Weather Status Section ========== */
.weather-status-section {
    padding: var(--spacing-xl) 0;
    background: var(--off-white);
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.status-card {
    background: var(--white);
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.status-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.status-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.status-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.status-icon svg {
    color: var(--primary);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.status-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
}

.status-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

/* Circular Progress */
.circular-progress {
    position: relative;
    width: 200px;
    height: 200px;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-bg {
    fill: none;
    stroke: var(--light-gray);
    stroke-width: 12;
}

.progress-ring-circle {
    fill: none;
    stroke-width: 12;
    stroke-linecap: round;
    stroke-dasharray: 534.07;
    stroke-dashoffset: 534.07;
    transition: stroke-dashoffset 1.5s ease, stroke 0.5s ease;
    filter: drop-shadow(0 0 8px currentColor);
}

/* PM2.5 Ring Colors */
.pm25-ring {
    stroke: #4caf50;
}

.pm25-ring.moderate {
    stroke: #ffc107;
}

.pm25-ring.unhealthy {
    stroke: #f44336;
}

/* Traffic Ring Colors */
.traffic-ring {
    stroke: #4caf50;
}

.traffic-ring.moderate {
    stroke: #ffc107;
}

.traffic-ring.heavy {
    stroke: #f44336;
}

/* Temperature Ring Colors */
.temp-ring {
    stroke: #4caf50;
}

.temp-ring.warm {
    stroke: #ff9800;
}

.temp-ring.hot {
    stroke: #f44336;
}

.progress-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.progress-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}

.progress-unit {
    font-size: 1.5rem;
    color: var(--medium-gray);
    font-weight: 600;
}

.progress-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-details {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--light-gray);
}

.detail-item {
    text-align: center;
}

.detail-label {
    display: block;
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .status-grid {
        grid-template-columns: 1fr;
    }
    
    .circular-progress {
        width: 180px;
        height: 180px;
    }
    
    .progress-value {
        font-size: 3rem;
    }
}


/* ========== Places Section ========== */
.places-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-bg);
}

.places-section:nth-child(even) {
    background: var(--white);
}

.places-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.places-subtitle {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--spacing-xs);
}

.places-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
}

.places-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

/* Grid Variations */
.places-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

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

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

@media (max-width: 768px) {
    .places-grid-3,
    .places-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Horizontal Scrollable Carousel for Cafes */
.places-carousel-wrapper {
    position: relative;
    margin-top: var(--spacing-lg);
}

.places-carousel {
    display: flex;
    gap: var(--spacing-md);
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: var(--spacing-sm) 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.places-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.places-carousel .place-card {
    flex: 0 0 320px;
    min-width: 320px;
}

/* Carousel Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 10;
    opacity: 0;
}

.carousel-nav:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.carousel-nav.prev {
    left: -25px;
}

.carousel-nav.next {
    right: -25px;
}

.places-carousel-wrapper:hover .carousel-nav {
    opacity: 1;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: var(--spacing-md);
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.carousel-indicator.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

.carousel-indicator:hover {
    background: var(--gold-light);
}

.place-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-normal);
    cursor: pointer;
}

.place-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.place-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.place-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
}

.place-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.place-rating svg {
    color: var(--gold);
}

.place-content {
    padding: var(--spacing-md);
}

.place-category {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    margin-bottom: var(--spacing-sm);
}

.place-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.place-description {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.place-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--light-gray);
    margin-bottom: var(--spacing-sm);
}

.place-location {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.place-location svg {
    color: var(--gold);
}

.place-reviews {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.place-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: var(--spacing-sm);
}

.place-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.place-link:hover {
    gap: 0.8rem;
    color: var(--gold);
}

.place-link svg {
    transition: var(--transition-normal);
}

/* Responsive */
@media (max-width: 768px) {
    .places-grid {
        grid-template-columns: 1fr;
    }
    
    .places-title {
        font-size: 2rem;
    }
    
    /* Carousel on mobile */
    .places-carousel .place-card {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-nav.prev {
        left: -20px;
    }
    
    .carousel-nav.next {
        right: -20px;
    }
    
    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   Check-in Page � New 2-Column Layout
   ======================================== */

/* Main Section */
.checkin-main-section {
    padding: var(--spacing-md) 0 var(--spacing-lg);
    background: var(--off-white);
}

/* 2-Column Layout */
.checkin-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: var(--spacing-md);
    align-items: start;
}

/* ---- Form Column ---- */
.checkin-card {
    background: var(--white);
    border-radius: 16px;
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
}

.checkin-card-header {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--light-gray);
}

.checkin-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.checkin-card-desc {
    font-size: 0.88rem;
    color: var(--medium-gray);
}

/* Form Groups */
.ci-form-group {
    margin-bottom: 1.25rem;
}

.ci-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.ci-label svg {
    color: var(--gold-dark);
    flex-shrink: 0;
}

/* Input */
.ci-input {
    width: 100%;
    padding: 0.65rem 0.875rem;
    border: 1.5px solid var(--light-gray);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--primary);
    background: var(--white);
    transition: var(--transition-fast);
}

.ci-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

/* Location Suggestions */
.ci-location-wrap { position: relative; }

.ci-suggestions {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1.5px solid var(--light-gray);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    z-index: 100;
    overflow: hidden;
}

.ci-suggestions.open { display: block; }

.ci-suggestion-item {
    padding: 0.6rem 0.875rem;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--primary);
}

.ci-suggestion-item:hover {
    background: var(--gold-light);
    color: var(--gold-dark);
}

/* Upload Area */
.ci-upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1.25rem;
    border: 2px dashed var(--light-gray);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-normal);
    text-align: center;
    color: var(--medium-gray);
}

.ci-upload-area:hover {
    border-color: var(--gold);
    background: var(--gold-light);
    color: var(--gold-dark);
}

.ci-upload-area svg { color: var(--gold); }

.ci-upload-text {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--primary);
}

.ci-upload-hint {
    font-size: 0.78rem;
    color: var(--medium-gray);
}

.ci-file-input { display: none; }

.ci-photo-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.ci-photo-preview img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--light-gray);
}

/* Textarea */
.ci-textarea {
    width: 100%;
    padding: 0.65rem 0.875rem;
    border: 1.5px solid var(--light-gray);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--primary);
    resize: vertical;
    min-height: 90px;
    transition: var(--transition-fast);
}

.ci-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.ci-counter {
    text-align: right;
    font-size: 0.78rem;
    color: var(--medium-gray);
    margin-top: 0.25rem;
}

/* Stars */
.ci-stars {
    display: flex;
    gap: 0.25rem;
}

.ci-star {
    color: var(--light-gray);
    transition: var(--transition-fast);
    padding: 0.1rem;
    border: none;
    background: none;
    cursor: pointer;
}

.ci-star:hover,
.ci-star.active {
    color: var(--gold);
}

.ci-star.active svg { fill: var(--gold); stroke: var(--gold); }

/* Tags */
.ci-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    border: 1.5px solid var(--light-gray);
    border-radius: 8px;
    min-height: 44px;
    align-items: center;
    transition: var(--transition-fast);
}

.ci-tags-wrap:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.ci-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.6rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 12px;
}

.ci-tag-remove {
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 0;
}

.ci-tag-remove:hover { color: var(--white); }

.ci-tag-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 0.88rem;
    min-width: 100px;
    background: transparent;
}

.ci-tag-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.ci-tag-suggest {
    padding: 0.25rem 0.75rem;
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--dark-gray);
}

.ci-tag-suggest:hover {
    background: var(--gold-light);
    border-color: var(--gold);
    color: var(--gold-dark);
}

/* Privacy */
.ci-privacy-row {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.ci-privacy-opt {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.ci-privacy-opt input[type="radio"] { display: none; }

.ci-privacy-label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.875rem;
    border: 1.5px solid var(--light-gray);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark-gray);
    transition: var(--transition-fast);
    cursor: pointer;
}

.ci-privacy-opt input:checked + .ci-privacy-label {
    border-color: var(--gold);
    background: var(--gold-light);
    color: var(--gold-dark);
}

.ci-privacy-label svg { color: inherit; }

/* Actions */
.ci-actions {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: flex-end;
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--light-gray);
    margin-top: var(--spacing-sm);
}

/* ---- Feed Column ---- */
.checkin-feed-col {
    position: sticky;
    top: 160px;
}

.checkin-feed-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
}

.checkin-feed-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.checkin-feed-viewall {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold-dark);
    transition: var(--transition-fast);
}

.checkin-feed-viewall:hover { color: var(--gold); }

.checkin-feed {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--light-gray) transparent;
}

/* Feed Item */
.ci-feed-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    transition: var(--transition-normal);
}

.ci-feed-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.ci-feed-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.ci-feed-body {
    padding: 0.875rem;
}

.ci-feed-user {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.ci-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-light);
    flex-shrink: 0;
}

.ci-username {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
}

.ci-time {
    font-size: 0.75rem;
    color: var(--medium-gray);
}

.ci-feed-location {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gold-dark);
    margin-bottom: 0.4rem;
}

.ci-feed-caption {
    font-size: 0.85rem;
    color: var(--dark-gray);
    line-height: 1.5;
    margin-bottom: 0.6rem;
}

.ci-feed-stats {
    display: flex;
    gap: var(--spacing-sm);
}

.ci-stat-btn {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.82rem;
    color: var(--medium-gray);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 0;
}

.ci-stat-btn:hover { color: var(--gold-dark); }

/* Responsive */
@media (max-width: 1024px) {
    .checkin-layout {
        grid-template-columns: 1fr;
    }

    .checkin-feed-col {
        position: static;
    }

    .checkin-feed {
        max-height: none;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .checkin-feed {
        grid-template-columns: 1fr;
    }

    .ci-privacy-row {
        flex-direction: column;
        gap: 0.4rem;
    }
}

/* ========== Navbar Buttons ========== */
.btn-register {
    padding: 0.55rem 1.2rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 500;
    border: 1.5px solid var(--primary);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-normal);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    font-family: inherit;
}

.btn-register:hover {
    background: #333;
    border-color: #333;
    color: var(--white);
}

.nav-actions .btn-secondary {
    padding: 0.55rem 1.2rem;
    background: transparent;
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 500;
    border: 1.5px solid var(--primary);
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-normal);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    font-family: inherit;
    cursor: pointer;
}

.nav-actions .btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===================================
   User Auth State � Navbar
   =================================== */

.user-menu-wrap {
  position: relative;
}

.user-avatar-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212,175,55,0.1);
  border: 1.5px solid rgba(212,175,55,0.35);
  border-radius: 50px;
  padding: 0.3rem 0.75rem 0.3rem 0.3rem;
  cursor: pointer;
  transition: all 0.2s;
  color: inherit;
}

.user-avatar-btn:hover {
  background: rgba(212,175,55,0.2);
  border-color: rgba(212,175,55,0.6);
}

.user-avatar-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.user-avatar-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b8941e, #d4af37);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  flex-shrink: 0;
}

.user-display-name {
  font-size: 0.82rem;
  font-weight: 600;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Profile Popup */
.profile-popup {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 280px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  z-index: 9999;
  overflow: hidden;
  border: 1px solid #f0ede8;
}

.profile-popup-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  color: #fff;
}

.profile-popup-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(212,175,55,0.5);
  flex-shrink: 0;
}

.profile-popup-avatar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b8941e, #d4af37);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  flex-shrink: 0;
}

.profile-popup-info {
  flex: 1;
  min-width: 0;
}

.profile-popup-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-popup-email {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.1rem;
}

.profile-popup-badge {
  display: inline-block;
  margin-top: 0.3rem;
  padding: 0.1rem 0.5rem;
  background: rgba(212,175,55,0.25);
  color: #d4af37;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 600;
  border: 1px solid rgba(212,175,55,0.4);
}

.profile-popup-divider {
  height: 1px;
  background: #f0ede8;
}

.profile-popup-body {
  padding: 0.75rem 1rem;
}

.profile-popup-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  font-size: 0.78rem;
}

.profile-popup-label {
  color: #999;
  font-weight: 500;
}

.profile-popup-value {
  color: #1a1a1a;
  font-weight: 500;
  text-align: right;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-reset-link {
  color: #b8941e;
  text-decoration: none;
  font-size: 0.75rem;
}

.profile-reset-link:hover {
  text-decoration: underline;
}

.profile-logout-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem;
  background: #fff5f5;
  border: none;
  color: #c62828;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.profile-logout-btn:hover {
  background: #ffebee;
}


/* ========================================
   Newsletter � Compact Desktop
   ======================================== */
.newsletter-compact {
    padding: 2rem 0 !important;
}

.newsletter-compact .newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 860px;
    margin: 0 auto;
}

.newsletter-compact .newsletter-text {
    flex-shrink: 0;
}

.newsletter-compact .newsletter-title {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.newsletter-compact .newsletter-description {
    font-size: 0.88rem;
    margin-bottom: 0;
    color: rgba(255,255,255,0.65);
}

.newsletter-compact .newsletter-form {
    flex: 1;
    max-width: 420px;
    margin: 0;
    gap: 0.75rem;
}

.newsletter-compact .newsletter-input {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
}

.newsletter-compact .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.88rem;
    white-space: nowrap;
}

/* ========================================
   Footer � Compact
   ======================================== */
.footer {
    padding: 2.5rem 0 0 !important;
}

.footer-content {
    gap: 3rem !important;
    margin-bottom: 1.5rem !important;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
    max-width: 280px !important;
}

.footer-logo {
    font-size: 1.1rem !important;
    margin-bottom: 0.2rem !important;
}

.footer-tagline {
    font-size: 0.78rem !important;
    margin-bottom: 0.75rem !important;
}

.footer-description {
    font-size: 0.82rem !important;
    line-height: 1.65 !important;
}

.footer-links {
    gap: 2rem !important;
}

.footer-title {
    font-size: 0.82rem !important;
    margin-bottom: 0.75rem !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.footer-list li {
    margin-bottom: 0.35rem !important;
}

.footer-list a {
    font-size: 0.82rem !important;
    color: rgba(255,255,255,0.6) !important;
}

.footer-list a:hover {
    color: var(--gold) !important;
}

/* ========================================
   Footer Team Section
   ======================================== */
.footer-team {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 1.25rem;
}

.footer-team-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-team-icon {
    color: rgba(212,175,55,0.5);
    font-size: 0.7rem;
}

.footer-team-title {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ???????? 4 ?? */
.footer-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.footer-team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.footer-team-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(184,148,30,0.2), rgba(212,175,55,0.15));
    border: 1.5px solid rgba(212,175,55,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(212,175,55,0.7);
    transition: all 0.2s;
}

.footer-team-member:hover .footer-team-avatar {
    border-color: rgba(212,175,55,0.6);
    background: linear-gradient(135deg, rgba(184,148,30,0.3), rgba(212,175,55,0.25));
}

.footer-team-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.footer-team-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    line-height: 1.3;
}

.footer-team-role {
    font-size: 0.65rem;
    color: rgba(212,175,55,0.6);
    letter-spacing: 0.05em;
}

/* ???????????????? */
.footer-advisor-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-advisor-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.footer-advisor-list {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-advisor-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-advisor-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
}

.footer-advisor-name {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

.footer-advisor-sep {
    color: rgba(255,255,255,0.2);
    font-size: 1rem;
}

/* Footer bottom */
.footer-bottom {
    padding: 1rem 0 1.5rem !important;
    font-size: 0.78rem !important;
}

@media (max-width: 1024px) {
    .footer-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
}


/* ========================================
   Footer � About Button
   ======================================== */
.footer-about-btn-wrap {
    display: flex;
    justify-content: center;
    margin-top: 1.25rem;
}

.footer-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.5rem;
    background: transparent;
    border: 1.5px solid rgba(212,175,55,0.35);
    border-radius: 50px;
    color: rgba(212,175,55,0.8);
    font-size: 0.82rem;
    font-weight: 600;
    font-family: var(--font-body);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: all 0.2s;
}

.footer-about-btn:hover {
    background: rgba(212,175,55,0.1);
    border-color: rgba(212,175,55,0.6);
    color: #d4af37;
    gap: 0.65rem;
}



