/* ============================================================
   MYANMAR WEBSITE — DESIGN SYSTEM & STYLES
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Colors */
    --gold-50: #fefce8;
    --gold-100: #fef9c3;
    --gold-200: #fef08a;
    --gold-300: #fde047;
    --gold-400: #facc15;
    --gold-500: #d4a017;
    --gold-600: #b8860b;
    --gold-700: #92400e;

    --warm-50: #fdf8f0;
    --warm-100: #f5ebe0;
    --warm-200: #e8d5b7;
    --warm-300: #d4a574;
    --warm-400: #c08552;
    --warm-500: #a0522d;

    --neutral-50: #fafaf9;
    --neutral-100: #f5f5f4;
    --neutral-200: #e7e5e4;
    --neutral-300: #d6d3d1;
    --neutral-400: #a8a29e;
    --neutral-500: #78716c;
    --neutral-600: #57534e;
    --neutral-700: #44403c;
    --neutral-800: #292524;
    --neutral-900: #1c1917;
    --neutral-950: #0c0a09;

    --ruby: #9b111e;
    --ruby-light: #c41e3a;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', 'Noto Sans Thai', sans-serif;
    --font-thai: 'Noto Sans Thai', 'Outfit', sans-serif;

    /* Spacing */
    --section-pad: clamp(80px, 10vw, 140px);
    --container-max: 1280px;

    /* Animation */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --transition-base: 0.3s var(--ease-out-quart);
    --transition-slow: 0.6s var(--ease-out-expo);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--neutral-800);
    background-color: var(--warm-50);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(28, 25, 23, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 3px;
}

.logo-icon {
    color: var(--gold-400);
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-thai);
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
    transition: color var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold-400);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(12, 10, 9, 0.97);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out-expo);
}

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

.mobile-links {
    text-align: center;
}

.mobile-link {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    padding: 12px 0;
    transition: all var(--transition-base);
    letter-spacing: 2px;
}

.mobile-link:hover {
    color: var(--gold-400);
    letter-spacing: 6px;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.1) translate(0, 0); }
    100% { transform: scale(1.2) translate(-1%, -1%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(12, 10, 9, 0.4) 0%,
        rgba(12, 10, 9, 0.2) 40%,
        rgba(12, 10, 9, 0.5) 70%,
        rgba(12, 10, 9, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 0.3s forwards;
}

.badge-text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--gold-300);
    text-transform: uppercase;
}

.badge-line {
    width: 40px;
    height: 1px;
    background: var(--gold-500);
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 0.5s forwards;
}

.title-line {
    display: block;
    font-family: var(--font-thai);
    color: #fff;
    line-height: 1.1;
}

.title-line-1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 200;
    letter-spacing: 8px;
}

.title-line-2 {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-200), var(--gold-400), var(--gold-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(212, 160, 23, 0.3));
}

.title-burmese {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 200;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 12px;
    margin-top: 8px;
}

.hero-subtitle {
    font-family: var(--font-thai);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    max-width: 600px;
    margin: 0 auto 48px;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 0.7s forwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 0.9s forwards;
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--gold-300);
    line-height: 1.2;
}

.stat-label {
    font-family: var(--font-thai);
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border: 1px solid var(--gold-500);
    color: var(--gold-300);
    font-family: var(--font-thai);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all var(--transition-base);
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 1.1s forwards;
}

.hero-cta:hover {
    background: var(--gold-500);
    color: var(--neutral-950);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.3);
}

.hero-cta svg {
    transition: transform var(--transition-base);
}

.hero-cta:hover svg {
    transform: translate(3px, -3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 1.5s forwards;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-400), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 40px; }
    50% { opacity: 1; height: 50px; }
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

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

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: clamp(48px, 6vw, 80px);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 5px;
    color: var(--gold-600);
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 8px 20px;
    border: 1px solid var(--gold-200);
    border-radius: 50px;
}

.section-tag-light {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--gold-300);
}

.section-title {
    font-family: var(--font-thai);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1.2;
}

.section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title-light {
    color: #fff;
}

.section-title-light em {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
    padding: var(--section-pad) 0;
    background: var(--warm-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    padding-right: 20px;
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--neutral-700);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 0.98rem;
    color: var(--neutral-600);
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid var(--neutral-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-600));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--gold-200);
}

.info-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.info-card h3 {
    font-family: var(--font-thai);
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 8px;
}

.info-card p {
    font-size: 0.85rem;
    color: var(--neutral-500);
    line-height: 1.7;
}

/* ============================================================
   DESTINATIONS SECTION
   ============================================================ */
.destinations {
    padding: var(--section-pad) 0;
    background: linear-gradient(180deg, var(--warm-50) 0%, var(--warm-100) 100%);
}

.dest-showcase {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.dest-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.dest-card-reverse {
    direction: rtl;
}

.dest-card-reverse > * {
    direction: ltr;
}

.dest-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.dest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

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

.dest-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
}

.dest-info {
    padding: 20px 0;
}

.dest-number {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: var(--gold-200);
    line-height: 1;
    margin-bottom: 12px;
}

.dest-name {
    font-family: var(--font-thai);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.dest-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gold-600);
    margin-bottom: 20px;
}

.dest-desc {
    font-size: 0.95rem;
    color: var(--neutral-600);
    line-height: 1.9;
    margin-bottom: 20px;
}

.dest-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gold-50);
    border: 1px solid var(--gold-200);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gold-700);
    letter-spacing: 0.5px;
}

/* ============================================================
   CULTURE SECTION
   ============================================================ */
.culture {
    position: relative;
    padding: var(--section-pad) 0;
    overflow: hidden;
}

.culture-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.culture-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 10, 9, 0.82);
    backdrop-filter: blur(2px);
}

.culture .container {
    position: relative;
    z-index: 1;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 36px 32px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all var(--transition-base);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.culture-card-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.culture-card h3 {
    font-family: var(--font-thai);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold-300);
    margin-bottom: 12px;
}

.culture-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

/* ============================================================
   CUISINE SECTION
   ============================================================ */
.cuisine {
    padding: var(--section-pad) 0;
    background: var(--warm-50);
}

.cuisine-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cuisine-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.cuisine-main-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.cuisine-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.cuisine-image-caption span {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.cuisine-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dish-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--neutral-200);
    transition: all var(--transition-base);
}

.dish-card:hover {
    border-color: var(--gold-200);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateX(8px);
}

.dish-rank {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
}

.dish-details h3 {
    font-family: var(--font-thai);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 6px;
}

.dish-en {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--neutral-400);
}

.dish-details p {
    font-size: 0.88rem;
    color: var(--neutral-500);
    line-height: 1.8;
}

/* ============================================================
   TRAVEL TIPS SECTION
   ============================================================ */
.travel {
    padding: var(--section-pad) 0;
    background: linear-gradient(180deg, var(--warm-100), var(--warm-50));
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.travel-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid var(--neutral-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.travel-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-400), var(--ruby-light));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.travel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
}

.travel-card:hover::after {
    transform: scaleX(1);
}

.travel-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.travel-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.travel-card h3 {
    font-family: var(--font-thai);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--neutral-800);
}

.travel-card p {
    font-size: 0.88rem;
    color: var(--neutral-500);
    line-height: 1.8;
}

/* ============================================================
   TIMELINE SECTION
   ============================================================ */
.timeline-section {
    padding: var(--section-pad) 0;
    background: var(--neutral-900);
}

.timeline-section .section-title {
    color: #fff;
}

.timeline-section .section-title em {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-section .section-tag {
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--gold-400);
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 12px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold-500), var(--gold-700), transparent);
}

.timeline-item {
    position: relative;
    padding-bottom: 48px;
}

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

.timeline-dot {
    position: absolute;
    left: -34px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold-500);
    border: 3px solid var(--neutral-900);
    box-shadow: 0 0 0 3px var(--gold-500);
    z-index: 1;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px 28px;
    transition: all var(--transition-base);
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 160, 23, 0.2);
    transform: translateX(8px);
}

.timeline-year {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold-400);
    letter-spacing: 2px;
    margin-bottom: 8px;
    padding: 4px 12px;
    background: rgba(212, 160, 23, 0.1);
    border-radius: 50px;
}

.timeline-content h3 {
    font-family: var(--font-thai);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--neutral-950);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.footer-logo .logo-icon {
    color: var(--gold-400);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
}

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

.footer-col h4 {
    font-family: var(--font-thai);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-400);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    transition: all var(--transition-base);
}

.footer-col a:hover {
    color: var(--gold-300);
    padding-left: 6px;
}

.footer-bottom {
    padding: 24px 0;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.25);
    text-align: center;
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out-expo);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        padding-right: 0;
    }

    .dest-card-large {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .dest-card-reverse {
        direction: ltr;
    }

    .dest-image {
        aspect-ratio: 16/10;
    }

    .culture-grid {
        grid-template-columns: 1fr;
    }

    .cuisine-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .about-cards {
        grid-template-columns: 1fr;
    }

    .travel-grid {
        grid-template-columns: 1fr;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .timeline {
        padding-left: 32px;
    }

    .timeline::before {
        left: 8px;
    }

    .timeline-dot {
        left: -30px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .dest-number {
        font-size: 3rem;
    }

    .badge-line {
        width: 20px;
    }

    .badge-text {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }
}
