:root {
    --yellow: #FFD700;
    --yellow-light: #FFF9E6;
    --yellow-dark: #E6C200;
    --black: #0A0A0A;
    --black-light: #2A2A2A;
    --black-soft: #4A4A4A;
    --white: #FFFFFF;
    --white-soft: #FAFAFA;
    --gray: #666666;
    --gray-light: #E5E5E5;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sarabun', 'Prompt', sans-serif;
    background-color: var(--white);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1,
h2,
h3 {
    font-family: 'Prompt', 'Mitr', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--yellow-dark) 0%, var(--yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation - Premium Design */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
}

nav.scrolled {
    padding: 1rem 4rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid var(--yellow);
}

.logo {
    font-family: 'Mitr', 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--yellow);
    text-transform: capitalize;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    text-decoration: none;
    cursor: pointer;
}

.logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)) brightness(0) invert(1);
    transition: all 0.3s ease;
}

nav.scrolled .logo-img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) brightness(1) invert(0);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

nav.scrolled .logo {
    color: var(--black);
    text-shadow: none;
}

nav.scrolled .logo {
    color: var(--black);
    text-shadow: none;
}

.logo i {
    font-size: 1.5rem;
    color: var(--yellow);
    animation: moonRotate 10s linear infinite;
}

nav.scrolled .logo i {
    color: var(--yellow-dark);
}

@keyframes moonRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.logo:hover {
    transform: scale(1.05);
}

.logo span {
    color: var(--yellow) !important;
    font-size: 2rem;
}

nav.scrolled .logo span {
    color: var(--yellow-dark) !important;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    margin-left: auto;
}

/* Social Links in Navigation */
.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

nav.scrolled .social-icon {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--yellow);
    color: var(--black);
}

.social-icon:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

nav.scrolled .social-icon:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
    color: var(--white);
}

.nav-link-item {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    font-family: 'Prompt', 'Sarabun', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav.scrolled .nav-link-item {
    color: var(--black);
    text-shadow: none;
}

.nav-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link-item:hover {
    color: var(--yellow);
    transform: translateY(-2px);
}

nav.scrolled .nav-link-item:hover {
    color: var(--yellow-dark);
}

.nav-link-item:hover .nav-underline {
    width: 100%;
}

/* Special Booking Button in Nav */
.nav-booking-btn {
    background: transparent;
    color: var(--white) !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.nav-booking-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.nav-booking-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--yellow);
    color: var(--yellow) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

.nav-booking-btn:hover i {
    transform: scale(1.2);
}

nav.scrolled .nav-booking-btn {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--black) !important;
    border: none;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

nav.scrolled .nav-booking-btn:hover {
    background: linear-gradient(135deg, var(--yellow-dark) 0%, var(--yellow) 100%);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    animation: fadeInUp 1s ease 1s backwards;
}

.mouse {
    width: 22px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 18px;
    position: relative;
    margin: 0 auto 0.6rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.wheel {
    width: 3px;
    height: 6px;
    background: var(--yellow);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 6px;
    }

    100% {
        opacity: 0;
        top: 22px;
    }
}

.scroll-indicator p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-family: 'Prompt', 'Sarabun', sans-serif;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Hero Section - Vibrant Golden Design */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #000;
    /* Fallback */
}

/* Animated Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: particleFloat 15s ease-in-out infinite;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    top: 40%;
    left: 30%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    top: 60%;
    left: 50%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.particle:nth-child(4) {
    width: 5px;
    height: 5px;
    top: 30%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 14s;
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    top: 70%;
    left: 20%;
    animation-delay: 3s;
    animation-duration: 16s;
}

.particle:nth-child(6) {
    width: 6px;
    height: 6px;
    top: 50%;
    left: 80%;
    animation-delay: 5s;
    animation-duration: 13s;
}

.particle:nth-child(7) {
    width: 3px;
    height: 3px;
    top: 80%;
    left: 60%;
    animation-delay: 2.5s;
    animation-duration: 17s;
}

.particle:nth-child(8) {
    width: 5px;
    height: 5px;
    top: 15%;
    left: 90%;
    animation-delay: 4.5s;
    animation-duration: 15s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translate(100px, -100px) scale(1.2);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50px, -200px) scale(0.8);
        opacity: 0.5;
    }

    75% {
        transform: translate(150px, -150px) scale(1.1);
        opacity: 0.7;
    }
}

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

.hero-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: slideShow 24s infinite;
    filter: brightness(1.1) saturate(1.2);
}

.hero-slideshow img:nth-child(1) {
    animation-delay: 0s;
}

.hero-slideshow img:nth-child(2) {
    animation-delay: 6s;
}

.hero-slideshow img:nth-child(3) {
    animation-delay: 12s;
}

.hero-slideshow img:nth-child(4) {
    animation-delay: 18s;
}

@keyframes slideShow {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    4% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    29% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Dark Overlay for Readability */
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    backdrop-filter: blur(1px);
}

.hero-content {
    z-index: 2;
    padding: 1.5rem;
    max-width: 900px;
    position: relative;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95) 0%, rgba(230, 194, 0, 0.95) 100%);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    font-family: 'Prompt', 'Sarabun', sans-serif;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    animation: starTwinkle 2s ease-in-out infinite;
    font-size: 0.75rem;
    color: var(--black);
}

/* Hero Title */
.hero-title {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -1.5px;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.title-line.text-gradient {
    background: linear-gradient(135deg, var(--yellow) 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.4s backwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.btn-primary {
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--black);
    border: none;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Prompt', 'Sarabun', sans-serif;
    border-radius: 50px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    padding: 0.9rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-family: 'Prompt', 'Sarabun', sans-serif;
    border-radius: 50px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--yellow);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 1s ease 0.8s backwards;
}

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

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--yellow);
    margin-bottom: 0.3rem;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-family: 'Prompt', 'Sarabun', sans-serif;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(255, 215, 0, 0.5) 50%,
            transparent 100%);
}



/* Special Banner Section */
/* Special Banner Section */
.special-banner {
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    margin: 0;
}

/* Remove the blurred background effect */
.special-banner::before {
    display: none;
}

@keyframes backgroundMove {
    0%, 100% {
        transform: scale(1.1) translateX(0) translateY(0);
    }
    25% {
        transform: scale(1.15) translateX(-10px) translateY(-10px);
    }
    50% {
        transform: scale(1.12) translateX(10px) translateY(5px);
    }
    75% {
        transform: scale(1.14) translateX(-5px) translateY(10px);
    }
}

.banner-container {
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    display: block;
    z-index: 1;
    background: var(--black);
}

.banner-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    max-height: none;
    display: block;
    object-fit: contain;
    object-position: center;
    margin: 0;
    position: relative;
    z-index: 2;
    border-radius: 0;
    filter: none;
    background: var(--black);
}

/* Remove the glow effect behind banner image */
.banner-img::before {
    display: none;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
            rgba(255, 215, 0, 0.1) 0%,
            transparent 50%,
            rgba(255, 215, 0, 0.1) 100%);
    pointer-events: none;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.banner-image-wrapper:hover .banner-overlay {
    opacity: 0.8;
}

.banner-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--black);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    animation: badgeFloat 3s ease-in-out infinite;
    border: 2px solid var(--white);
    z-index: 10;
}

@keyframes badgeFloat {

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

    25% {
        transform: translateY(-5px) rotate(-2deg);
    }

    75% {
        transform: translateY(-5px) rotate(2deg);
    }
}

.banner-badge i {
    font-size: 1.1rem;
    animation: starTwinkle 2s ease-in-out infinite;
}

.banner-badge i:first-child {
    animation-delay: 0s;
}

.banner-badge i:last-child {
    animation-delay: 1s;
}

@keyframes starTwinkle {

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

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.banner-badge span {
    font-family: 'Prompt', 'Sarabun', sans-serif;
}

/* Sections */
section {
    padding: 8rem 8%;
    position: relative;
    background: var(--white);
}

/* Pull up Media Section */
.media-section {
    padding-top: 0;
    margin-top: -1rem;
}

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

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Media Section - Premium Dynamic Design */
.media-section {
    padding: 1rem 2% 2rem 2%;
    background: linear-gradient(180deg,
            #FAFAFA 0%,
            #FFF9E6 30%,
            #FFFFFF 70%,
            #FFF9E6 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Decoration */
.media-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    animation: floatAnimation 20s ease-in-out infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: -50px;
    animation-delay: 5s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: 30%;
    animation-delay: 10s;
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(50px, -50px) scale(1.1);
        opacity: 0.6;
    }
}

.media-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Premium Title Section */
.media-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.decoration-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--yellow) 50%, transparent 100%);
    animation: lineExpand 1.5s ease-in-out infinite;
}

@keyframes lineExpand {

    0%,
    100% {
        width: 80px;
        opacity: 0.5;
    }

    50% {
        width: 100px;
        opacity: 1;
    }
}

.title-icon {
    font-size: 1.5rem;
    color: var(--yellow-dark);
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

.media-title h2 {
    font-size: 3.5rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    font-weight: 800;
}

.subtitle-enhanced {
    font-size: 1.3rem;
    color: var(--gray);
    animation: fadeInUp 0.8s ease 0.4s backwards;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.title-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    margin: 0 auto;
    border-radius: 2px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

/* Premium Grid Layout */
.media-grid-premium {
    display: grid;
    grid-template-columns: 1.5fr 0.5fr;
    gap: 1.5rem;
    align-items: stretch;
}

/* Video Card - Premium Design */
.media-video-card {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.media-video-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 30px 80px rgba(255, 215, 0, 0.25),
        0 0 0 1px rgba(255, 215, 0, 0.3);
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(20px);
}

.media-video-card:hover .card-glow {
    opacity: 0.6;
}

.video-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-light);
}

.header-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--yellow-light) 0%, var(--yellow) 100%);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--black);
    font-family: 'Prompt', 'Sarabun', sans-serif;
}

.header-badge i {
    font-size: 1rem;
}

.view-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.view-count i {
    color: var(--yellow-dark);
}

.video-wrapper-premium {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-inner {
    position: relative;
    background: var(--black);
    aspect-ratio: 16 / 10;
}

.video-inner video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    pointer-events: none;
}

.video-card-footer {
    padding-top: 1rem;
}

.footer-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stat-item:hover {
    color: var(--yellow-dark);
    transform: scale(1.1);
}

.stat-item i {
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.stat-item:hover i {
    color: var(--yellow);
}

/* Gallery Cards - Premium Design */
.media-images-premium {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.gallery-card {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:nth-child(1) {
    animation: fadeInUp 0.8s ease 1s backwards;
}

.gallery-card:nth-child(2) {
    animation: fadeInUp 0.8s ease 1.2s backwards;
}

.gallery-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 30px 80px rgba(255, 215, 0, 0.25),
        0 0 0 1px rgba(255, 215, 0, 0.3);
}

.gallery-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .gallery-image-wrapper img {
    transform: scale(1.15);
}

.image-overlay-premium {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-card:hover .image-overlay-premium {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
}

.overlay-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--yellow);
    font-weight: 700;
    font-family: 'Prompt', 'Sarabun', sans-serif;
}

.overlay-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.view-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--yellow);
    color: var(--black);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Prompt', 'Sarabun', sans-serif;
}

.view-btn:hover {
    background: var(--yellow-dark);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.view-btn i {
    transition: transform 0.3s ease;
}

.view-btn:hover i {
    transform: translateX(5px);
}

.card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--white-soft);
    border-top: 1px solid var(--gray-light);
}

.info-left,
.info-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
}

.info-left i,
.info-right i {
    color: var(--yellow-dark);
    font-size: 1rem;
}

.info-right {
    cursor: pointer;
    transition: all 0.3s ease;
}

.info-right:hover {
    color: var(--yellow-dark);
    transform: scale(1.1);
}

/* Decorative elements */
.media-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--yellow) 50%,
            transparent 100%);
}

/* Cards Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.card {
    background: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--yellow);
    transition: width 0.4s ease;
    z-index: 10;
}

.card:hover::before {
    width: 100%;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--yellow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    filter: grayscale(0.2);
    transition: all 0.4s ease;
}

.card:hover .card-img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
    background: var(--white);
}

.card h3 {
    margin-bottom: 0.8rem;
    color: var(--black);
    font-size: 1.4rem;
    font-weight: 700;
}

.card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Info Section */
/* About Section */
.about-section {
    padding: 3rem 8%;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF9E6 50%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--yellow) 50%, transparent 100%);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--yellow-light) 0%, var(--yellow) 100%);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.section-badge i {
    font-size: 0.9rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.about-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--black);
    font-family: 'Mitr', 'Prompt', sans-serif;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 2.5rem;
    text-align: justify;
}

.about-zones {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.zone-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    border-left: 4px solid var(--yellow);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.zone-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.2);
    border-left-color: var(--yellow-dark);
}

.zone-number {
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.zone-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-family: 'Prompt', sans-serif;
}

.zone-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray);
}

.about-highlight {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--yellow-light) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-radius: 12px;
    border: 2px solid var(--yellow);
}

.about-highlight i {
    font-size: 1.5rem;
    color: var(--yellow-dark);
    margin-top: 0.2rem;
}

.about-highlight p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--black);
    font-weight: 500;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.about-image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.about-image-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    font-family: 'Prompt', sans-serif;
}

.info-section {
    background: var(--yellow-light);
    text-align: center;
    border-top: 3px solid var(--yellow);
    border-bottom: 3px solid var(--yellow);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.info-item {
    padding: 3rem 2rem;
    background: var(--white);
    border: 2px solid var(--gray-light);
    transition: all 0.3s ease;
    position: relative;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

.info-item:hover::before {
    width: 80%;
}

.info-item:hover {
    background: var(--white);
    border-color: var(--yellow);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--yellow-dark);
}

.info-item h3 {
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Facilities Section */
.facilities-section {
    padding: 3rem 2%;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF9E6 100%);
    position: relative;
}

.facilities-container {
    max-width: 100%;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-top: 1rem;
    font-weight: 400;
}

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

.facility-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--gray-light);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.facility-card:hover::before {
    transform: scaleX(1);
}

.facility-card:hover {
    transform: translateY(-10px);
    border-color: var(--yellow);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
}

.facility-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    background: linear-gradient(135deg, var(--yellow-light) 0%, var(--yellow) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.facility-card:hover .facility-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
}

.facility-icon i {
    font-size: 2.2rem;
    color: var(--black);
}

.facility-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.8rem;
    font-family: 'Prompt', sans-serif;
}

.facility-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--gray);
}

/* Booking Section */
.booking-section {
    padding: 3rem 8% 2rem 8%;
    margin-bottom: 0;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFFFF 50%, #FFF9E6 100%);
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none;
    opacity: 0;
}

.booking-container {
    max-width: 1600px;
    margin: 0 auto;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.booking-section .section-header {
    margin-bottom: 3rem;
}

.vendor-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.vendor-badge i {
    font-size: 1.2rem;
}

.booking-section .section-title {
    color: var(--black);
}

.booking-section .section-subtitle {
    color: var(--gray);
}

.steps-grid {
    display: grid;
    grid-template-columns: 2fr 0.5fr 2fr 0.5fr 2fr 0.5fr 2fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid var(--gray-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--yellow);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 1.5rem auto 1.5rem;
    background: var(--yellow-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.15);
    background: var(--yellow);
}

.step-icon i {
    font-size: 2.2rem;
    color: var(--black);
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
    font-family: 'Prompt', sans-serif;
    line-height: 1.3;
}

.step-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
    max-width: none;
}

.step-arrow {
    text-align: center;
    color: var(--yellow-dark);
    font-size: 1.8rem;
    opacity: 0.7;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-arrow i {
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

.booking-cta {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 0;
    padding-bottom: 0;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0;
}
ห
.btn-large i {
    font-size: 1.3rem;
}

/* Footer */
footer {
    padding: 0;
    margin: 0;
    background: var(--black);
    color: var(--white);
    border-top: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 8% 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
    margin-top: 0;
}

.footer-section h3 {
    color: var(--yellow);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Prompt', sans-serif;
    text-align: left;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.4rem;
    text-align: left;
}

.footer-section p i {
    color: var(--yellow);
    margin-right: 0.5rem;
    width: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-family: 'Mitr', 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1.2;
    color: var(--yellow);
    text-transform: uppercase;
    text-align: left;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-social-link:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.footer-social-link i {
    font-size: 1.2rem;
    width: 22px;
    text-align: center;
}

.footer-bottom {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

footer p {
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Remove underline and blue color from phone numbers */
footer p a, .footer-section p a {
    text-decoration: none !important;
    color: inherit !important;
    cursor: default;
}

footer p a:hover, .footer-section p a:hover {
    text-decoration: none !important;
    color: inherit !important;
}

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

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

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

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

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

    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 4.5rem;
    }

    section {
        padding: 6rem 5%;
    }

    .about-section {
        padding: 5rem 5%;
    }

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

    .about-title {
        font-size: 3rem;
    }

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

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .step-arrow {
        display: none;
    }

    .special-banner {
        min-height: auto;
        padding: 0;
    }

    .banner-container {
        padding: 0;
        transform: none;
    }

    .banner-img {
        min-height: auto;
        border-radius: 0;
        background: var(--black);
    }

    .banner-badge {
        padding: 0.5rem 1.2rem;
        font-size: 0.8rem;
        top: 1.5rem;
        right: 1.5rem;
    }

    .banner-badge i {
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem;
    }

    .footer-logo-text {
        font-size: 1.5rem;
    }

    .footer-logo img {
        width: 65px;
        height: 65px;
    }

    .banner-image-wrapper {
        height: 350px;
    }

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

    .footer-container {
        padding: 2rem 5% 1rem;
    }

    .media-grid-premium {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-image-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-links {
        display: none;
    }

    .social-links {
        margin-left: auto;
        gap: 0.5rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-container {
        padding: 2rem 5% 1rem;
    }

    .footer-logo {
        gap: 0.7rem;
    }

    .footer-logo img {
        width: 60px;
        height: 60px;
    }

    .footer-logo-text {
        font-size: 1.4rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    .about-section {
        padding: 4rem 5%;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .zone-item {
        flex-direction: column;
        gap: 1rem;
    }

    .zone-number {
        min-width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .about-image-card img {
        height: 220px;
    }

    .facilities-section {
        padding: 4rem 5%;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .booking-section {
        padding: 4rem 5%;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        max-width: 600px;
        margin: 0 auto;
    }

    .step-arrow {
        display: none;
    }

    .step-card {
        padding: 2rem 1.2rem;
        min-height: 240px;
    }

    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: 1.5rem;
        letter-spacing: -0.5px;
    }

    .special-banner {
        min-height: auto !important;
        padding: 0 !important;
    }

    .banner-container {
        padding: 0 !important;
        transform: none !important;
    }

    .banner-img {
        min-height: auto !important;
        border-radius: 0 !important;
        background: var(--black) !important;
    }

    .banner-badge {
        padding: 0.4rem 1rem !important;
        font-size: 0.75rem !important;
        top: -1rem !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        gap: 0.3rem !important;
    }

    .banner-badge i {
        font-size: 0.8rem !important;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        max-width: 90%;
    }

    .hero-badge {
        font-size: 0.6rem;
        padding: 0.35rem 0.8rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.65rem 1.2rem;
        font-size: 0.85rem;
    }

    .banner-badge i {
        font-size: 0.9rem;
    }

    .banner-image-wrapper {
        height: 300px;
    }

    .media-section {
        padding: 2rem 2%;
    }

    .media-title h2 {
        font-size: 2.5rem;
    }

    .subtitle-enhanced {
        font-size: 1.1rem;
    }

    .media-grid-premium {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-image-wrapper {
        height: 280px;
    }

    .video-wrapper {
        padding: 6px;
        border-radius: 15px;
    }

    .video-inner {
        border-radius: 10px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    section {
        padding: 4rem 5%;
    }

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

@media (max-width: 480px) {
    nav {
        padding: 0.7rem 4% !important;
    }

    .logo {
        font-size: 1rem !important;
        gap: 0.5rem !important;
    }

    .logo-img {
        height: 35px !important;
    }

    .logo-text {
        font-size: 0.9rem !important;
    }

    .nav-links {
        display: none !important;
    }

    .social-links {
        gap: 0.3rem !important;
    }

    .social-icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.8rem !important;
    }

    .hero {
        height: 45vh;
        min-height: 320px;
    }

    .hero-title {
        font-size: 0.85rem !important;
        letter-spacing: -0.1px !important;
        margin-bottom: 0.4rem !important;
        line-height: 1.2 !important;
    }

    .hero-subtitle {
        font-size: 0.6rem !important;
        max-width: 95% !important;
        margin-bottom: 0.7rem !important;
        line-height: 1.3 !important;
    }

    .hero-badge {
        font-size: 0.45rem !important;
        padding: 0.15rem 0.5rem !important;
        margin-bottom: 0.4rem !important;
    }

    .hero-badge i {
        font-size: 0.45rem !important;
    }

    .hero-cta-group {
        flex-direction: row !important;
        gap: 0.3rem !important;
        padding: 0 1rem !important;
        justify-content: center !important;
    }

    .btn-primary, .btn-secondary {
        padding: 0.25rem 0.4rem !important;
        font-size: 0.55rem !important;
        width: auto !important;
        flex: 1 !important;
        border-radius: 12px !important;
        font-weight: 500 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .btn-primary span, .btn-secondary span {
        display: inline !important;
        white-space: nowrap !important;
    }

    .btn-primary i, .btn-secondary i {
        font-size: 0.5rem !important;
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .hero-stats {
        gap: 1rem !important;
        margin-top: 1rem !important;
    }

    .special-banner {
        min-height: auto !important;
        padding: 0 !important;
    }

    .banner-container {
        padding: 0 !important;
        transform: none !important;
    }

    .banner-img {
        min-height: auto !important;
        border-radius: 0 !important;
        background: var(--black) !important;
    }

    .banner-badge {
        padding: 0.3rem 0.8rem !important;
        font-size: 0.65rem !important;
        top: 1rem !important;
        right: 1rem !important;
        left: auto !important;
        transform: none !important;
        gap: 0.25rem !important;
        border-width: 1px !important;
    }

    .banner-badge i {
        font-size: 0.65rem !important;
    }

    .scroll-indicator {
        bottom: 0.5rem !important;
        transform: translateX(-50%) scale(0.8) !important;
    }

    .scroll-indicator p {
        font-size: 0.6rem !important;
        margin-top: 0.3rem !important;
    }

    .mouse {
        width: 18px !important;
        height: 30px !important;
        margin-bottom: 0.4rem !important;
    }

    .wheel {
        width: 2.5px !important;
        height: 5px !important;
        top: 5px !important;
    }

    .stat-box {
        text-align: center !important;
    }

    .stat-number {
        font-size: 1rem !important;
        margin-bottom: 0.2rem !important;
        font-weight: 700 !important;
    }

    .stat-label {
        font-size: 0.65rem !important;
        font-weight: 400 !important;
    }

    .stat-divider {
        height: 25px !important;
        opacity: 0.5 !important;
    }

    .about-section {
        padding: 3rem 4%;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-description {
        font-size: 0.95rem;
    }

    .zone-info h4 {
        font-size: 1.05rem;
    }

    .zone-info p {
        font-size: 0.9rem;
    }

    .about-image-card img {
        height: 200px;
    }

    .section-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }

    .facilities-section {
        padding: 3rem 4%;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .facility-icon {
        width: 65px;
        height: 65px;
    }

    .facility-icon i {
        font-size: 2rem;
    }

    .facility-card h3 {
        font-size: 1.1rem;
    }

    .facility-card p {
        font-size: 0.9rem;
    }

    .booking-section {
        padding: 3rem 4%;
    }

    .vendor-badge {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        max-width: 400px;
        margin: 0 auto;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon i {
        font-size: 1.7rem;
    }

    .step-card h3 {
        font-size: 1.05rem;
    }

    .step-card p {
        font-size: 0.85rem;
    }

    .btn-large {
        padding: 0.8rem 1.5rem !important;
        font-size: 0.9rem !important;
        gap: 0.6rem !important;
        border-radius: 12px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .btn-large i {
        font-size: 0.9rem !important;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-container {
        padding: 1.5rem 4% 0.8rem;
    }

    .footer-section h3 {
        font-size: 0.9rem !important;
        margin-bottom: 0.6rem !important;
    }

    .footer-section p {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
    }

    .footer-section p i {
        font-size: 0.7rem !important;
        margin-right: 0.4rem !important;
    }

    .footer-social-link {
        padding: 0.4rem 0.7rem !important;
        font-size: 0.7rem !important;
    }

    .footer-logo {
        gap: 0.5rem !important;
    }

    .footer-logo img {
        width: 45px !important;
        height: 45px !important;
    }

    .footer-logo-text {
        font-size: 1rem !important;
    }

    .footer-desc {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
    }

    .footer-logo-text {
        font-size: 1rem;
    }

    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }



    .banner-badge i {
        font-size: 0.75rem;
    }

    .banner-image-wrapper {
        height: 200px;
    }

    .media-section {
        padding: 1.5rem 5%;
    }

    .media-title h2 {
        font-size: 2rem;
        letter-spacing: -1px;
    }

    .subtitle-enhanced {
        font-size: 1rem;
    }

    .media-grid-premium {
        gap: 1.5rem;
    }

    .gallery-image-wrapper {
        height: 250px;
    }

    .media-video-card,
    .gallery-card {
        padding: 1rem;
    }

    .view-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .video-wrapper {
        padding: 4px;
        border-radius: 12px;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}
/* ฟอนต์ Prompt */
@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Prompt', sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
    min-height: 100vh;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

/* Header */
header {
    background: #1a1a1a;
    color: white;
    padding: 2rem 2rem 1rem;
    border-bottom: 4px solid #ffd700;
}

.header-content {
    text-align: center;
    margin-bottom: 1.5rem;
}

.header-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    color: #fff;
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-link {
    padding: 0.7rem 1.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-link:hover {
    background: #ffd700;
    color: #1a1a1a;
    border-color: #ffd700;
}

.nav-link.active {
    background: #ffd700;
    color: #1a1a1a;
    border-color: #ffd700;
}

/* Main Content */
main {
    padding: 2rem;
}

/* Intro Section */
.intro {
    text-align: center;
    margin-bottom: 2rem;
}

.intro h2 {
    color: #1a1a1a;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.intro > p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Date Picker */
.date-picker-container {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 2px solid #ffd700;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.date-picker-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.date-picker-form label {
    font-weight: 500;
    color: #1a1a1a;
}

#booking_date {
    padding: 0.7rem 1rem;
    border: 2px solid #1a1a1a;
    border-radius: 5px;
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

#booking_date:hover {
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

#booking_date:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.selected-date-display {
    color: #555;
    font-size: 1.1rem;
}

.selected-date-display strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Legend */
.legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

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

.status-box {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    border: 2px solid #1a1a1a;
}

.status-box.available {
    background: #fff;
    border-color: #1a1a1a;
}

.status-box.pending {
    background: #ffd700;
    border-color: #1a1a1a;
}

.status-box.confirmed {
    background: #4caf50;
    border-color: #1a1a1a;
}

.status-box.booked {
    background: #ffd700;
    border-color: #1a1a1a;
}

.status-box.maintenance {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

/* Market Layout */
.market-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.market-column {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.column-label {
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #ffd700;
}

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

/* Lock Box */
.lock-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    min-height: 100px;
    border: 2px solid #1a1a1a;
}

.lock-box-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.lock-box-price {
    font-size: 1rem;
    font-weight: 500;
}

/* Available Lock - สีขาว */
.lock-box.available {
    background: #fff;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.lock-box.available:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    background: #fffdf0;
    border-color: #ffd700;
}

/* Pending Lock - สีส้ม (รอยืนยัน) */
.lock-box.pending {
    background: #ffd700;
    color: #1a1a1a;
    cursor: not-allowed;
    border-color: #1a1a1a;
}

/* Confirmed Lock - สีเขียว (จองแล้ว) */
.lock-box.confirmed {
    background: #4CAF50 !important;
    color: #fff !important;
    cursor: not-allowed;
    border-color: #388E3C !important;
    border-width: 2px !important;
}

.lock-box.confirmed:hover {
    background: #4CAF50 !important;
    transform: none;
    cursor: not-allowed;
}

/* REPLACED */ .lock-box.confirmed_old {
    background: #4caf50;
    color: #fff;
    cursor: not-allowed;
    border-color: #1a1a1a;
}

/* Booked Lock - สีเหลือง */
.lock-box.booked {
    background: #ffd700;
    color: #1a1a1a;
    cursor: not-allowed;
    border-color: #1a1a1a;
}

/* Maintenance Lock - สีดำ */
.lock-box.maintenance {
    background: #1a1a1a;
    color: #ffd700;
    cursor: not-allowed;
    border-color: #1a1a1a;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
    border-top: 4px solid #ffd700;
}

footer p {
    font-weight: 300;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .market-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    main {
        padding: 1.5rem;
    }
    
    .market-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .locks-column {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .legend {
        gap: 1rem;
    }
    
    .date-picker-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 1.6rem;
    }
    
    .locks-column {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .lock-box {
        padding: 1rem 0.5rem;
        min-height: 80px;
    }
    
    .lock-box-number {
        font-size: 1.4rem;
    }
    
    .lock-box-price {
        font-size: 0.85rem;
    }
    
    .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Additional Styles */
.nav-link.active {
    background: #ffd700;
    color: #1a1a1a;
    border-color: #ffd700;
}

/* Main Content */
main {
    padding: 2rem;
}

/* Intro Section */
.intro {
    text-align: center;
    margin-bottom: 2rem;
}

.intro h2 {
    color: #1a1a1a;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.intro > p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Date Picker */
.date-picker-container {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 2px solid #ffd700;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.date-picker-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.date-picker-form label {
    font-weight: 500;
    color: #1a1a1a;
}

#booking_date {
    padding: 0.7rem 1rem;
    border: 2px solid #1a1a1a;
    border-radius: 5px;
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

#booking_date:hover {
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

#booking_date:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.selected-date-display {
    color: #555;
    font-size: 1.1rem;
}

.selected-date-display strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Legend */
.legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

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

.status-box {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    border: 2px solid #1a1a1a;
}

.status-box.available {
    background: #fff;
    border-color: #1a1a1a;
}

.status-box.pending {
    background: #ffd700;
    border-color: #1a1a1a;
}

.status-box.confirmed {
    background: #4caf50;
    border-color: #1a1a1a;
}

.status-box.booked {
    background: #ffd700;
    border-color: #1a1a1a;
}

.status-box.maintenance {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

/* Market Layout */
.market-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.market-column {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.column-label {
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #ffd700;
}

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

/* Lock Box */
.lock-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    min-height: 100px;
    border: 2px solid #1a1a1a;
}

.lock-box-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.lock-box-price {
    font-size: 1rem;
    font-weight: 500;
}

/* Available Lock - สีขาว */
.lock-box.available {
    background: #fff;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.lock-box.available:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    background: #fffdf0;
    border-color: #ffd700;
}

/* Pending Lock - สีส้ม (รอยืนยัน) */
.lock-box.pending {
    background: #ffd700;
    color: #1a1a1a;
    cursor: not-allowed;
    border-color: #1a1a1a;
}

/* Confirmed Lock - สีเขียว (จองแล้ว) */
.lock-box.confirmed {
    background: #4CAF50 !important;
    color: #fff !important;
    cursor: not-allowed;
    border-color: #388E3C !important;
    border-width: 2px !important;
}

.lock-box.confirmed:hover {
    background: #4CAF50 !important;
    transform: none;
    cursor: not-allowed;
}

/* REPLACED */ .lock-box.confirmed_old {
    background: #4caf50;
    color: #fff;
    cursor: not-allowed;
    border-color: #1a1a1a;
}

/* Booked Lock - สีเหลือง */
.lock-box.booked {
    background: #ffd700;
    color: #1a1a1a;
    cursor: not-allowed;
    border-color: #1a1a1a;
}

/* Maintenance Lock - สีดำ */
.lock-box.maintenance {
    background: #1a1a1a;
    color: #ffd700;
    cursor: not-allowed;
    border-color: #1a1a1a;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
    border-top: 4px solid #ffd700;
}

footer p {
    font-weight: 300;
    font-size: 0.95rem;
}

/* Booking Form Section */
.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.form-group input[type="tel"],
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #1a1a1a;
    border-radius: 5px;
    font-family: 'Prompt', sans-serif;
    font-size: 1rem;
    color: #1a1a1a;
    background: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #ffd700;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    border-radius: 5px;
    font-family: 'Prompt', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1a1a1a;
    color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

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

/* Alert Messages */
.alert {
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem auto;
    max-width: 800px;
    text-align: center;
    font-weight: 500;
    border: 2px solid;
}

.alert-warning {
    background: #fff9e6;
    color: #1a1a1a;
    border-color: #ffd700;
}

.alert-success {
    background: #e6ffe6;
    color: #1a1a1a;
    border-color: #00cc00;
}

.alert-danger {
    background: #ffe6e6;
    color: #1a1a1a;
    border-color: #ff4444;
}

/* Booking Card */
.booking-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.booking-card:hover {
    border-color: #ffd700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #ffd700;
}

.booking-id {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
}

.booking-status {
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid #1a1a1a;
}

.status-pending {
    background: #ffd700;
    color: #1a1a1a;
}

.status-paid {
    background: #4CAF50;
    color: #fff;
}

.status-cancelled {
    background: #ff4444;
    color: #fff;
}

.booking-details {
    color: #000 !important;
    line-height: 2;
}

.booking-details p {
    margin-bottom: 0.5rem;
    color: #000 !important;
}

.booking-details strong {
    font-weight: 600;
    color: #000 !important;
}

.booking-highlight {
    background: #fffdf0;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ffd700;
}

/* Section Title */
.section-title {
    text-align: center;
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: 600;
    margin: 2rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #ffd700;
    display: inline-block;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .market-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    main {
        padding: 1.5rem;
    }
    
    .market-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .locks-column {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .legend {
        gap: 1rem;
    }
    
    .date-picker-form {
        flex-direction: column;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
    
    .booking-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .booking-id {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 1.6rem;
    }
    
    .locks-column {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .lock-box {
        padding: 1rem 0.5rem;
        min-height: 80px;
    }
    
    .lock-box-number {
        font-size: 1.4rem;
    }
    
    .lock-box-price {
        font-size: 0.85rem;
    }
    
    .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .booking-form {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* Admin Section Styles */
.stat-card.red h3 {
    color: #ff4444;
}

.stat-card.yellow h3 {
    color: #ffd700;
}

.stat-card p {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Admin Table */
.admin-table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.admin-table table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table thead {
    background: #1a1a1a;
    color: #ffd700;
}

.admin-table th {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    border-bottom: 3px solid #ffd700;
}

.admin-table td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    color: #1a1a1a;
    text-align: center;
}

.admin-table tbody tr:hover {
    background: #fffdf0;
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

/* Status Badges in Table */
.status-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    border: 2px solid #1a1a1a;
}

.status-badge.pending {
    background: #ffd700;
    color: #1a1a1a;
}

.status-badge.paid {
    background: #4CAF50;
    color: #fff;
}

.status-badge.cancelled {
    background: #ff4444;
    color: #fff;
}

/* Action Buttons */
.btn-action {
    padding: 0.5rem 1rem;
    background: #1a1a1a;
    color: #ffd700;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    border: 2px solid #ffd700;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    margin: 2px;
}

.btn-action:hover {
    background: #ffd700;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,215,0,0.4);
}

.btn-action.danger {
    background: #ff4444;
    color: #fff;
    border-color: #ff4444;
}

.btn-action.danger:hover {
    background: #cc0000;
    border-color: #cc0000;
}

.btn-action.success {
    background: #4CAF50;
    color: #fff;
    border-color: #4CAF50;
}

.btn-action.success:hover {
    background: #388E3C;
    border-color: #388E3C;
}

/* Admin Section Heading */
.admin-section-title {
    color: #1a1a1a;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #ffd700;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        box-shadow: none;
    }
    
    .market-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    
    main {
        padding: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 100%;
    }
    
    .header-content h1 {
        font-size: 2.2rem;
    }
    
    .market-layout {
        grid-template-columns: 1fr;
    }
    
    .locks-column {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header */
    header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .header-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.3rem;
    }
    
    .tagline {
        font-size: 0.95rem;
    }
    
    /* Navigation */
    nav {
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Main Content */
    main {
        padding: 1rem;
    }
    
    /* Intro Section */
    .intro h2 {
        font-size: 1.5rem;
    }
    
    .intro p {
        font-size: 0.9rem;
    }
    
    /* Market Layout */
    .market-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .locks-column {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    
    /* Lock Box */
    .lock-box {
        padding: 1rem 0.6rem;
        min-height: 90px;
    }
    
    .lock-box-number {
        font-size: 1.5rem;
    }
    
    .lock-box-price {
        font-size: 0.85rem;
    }
    
    /* Legend */
    .legend {
        gap: 0.8rem;
        flex-wrap: wrap;
    }
    
    .legend-item {
        font-size: 0.85rem;
    }
    
    /* Date Picker */
    .date-picker-form {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .date-picker-form label {
        font-size: 0.9rem;
    }
    
    .date-picker-form input,
    .date-picker-form button {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Booking Form */
    .booking-form {
        padding: 1.5rem 1rem;
    }
    
    .booking-header {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .booking-id {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Success Message */
    .success-container {
        padding: 1.5rem;
    }
    
    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .success-container h2 {
        font-size: 1.8rem;
    }
    
    .booking-details {
        padding: 1rem;
    }
    
    .detail-item {
        font-size: 0.9rem;
    }
    
    /* My Bookings */
    .bookings-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .booking-card {
        padding: 1rem;
    }
    
    .booking-card-header h3 {
        font-size: 1.1rem;
    }
    
    /* Admin Responsive */
    .admin-container {
        padding: 1rem;
    }
    
    .admin-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .admin-header h1 {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.2rem;
    }
    
    .admin-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .admin-table table {
        min-width: 800px;
        font-size: 0.85rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.6rem;
    }
    
    .admin-section-title {
        font-size: 1.4rem;
    }
    
    /* Filters */
    .filters {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .filter-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Action Buttons */
    .actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Header */
    header {
        padding: 1rem 0.8rem 0.8rem;
    }
    
    .header-content h1 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.85rem;
    }
    
    /* Navigation */
    nav {
        gap: 0.4rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    /* Main Content */
    main {
        padding: 0.8rem;
    }
    
    /* Intro */
    .intro {
        margin-bottom: 1rem;
    }
    
    .intro h2 {
        font-size: 1.3rem;
    }
    
    .intro p {
        font-size: 0.85rem;
    }
    
    /* Locks Column */
    .locks-column {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .lock-box {
        padding: 0.8rem 0.4rem;
        min-height: 75px;
    }
    
    .lock-box-number {
        font-size: 1.3rem;
    }
    
    .lock-box-price {
        font-size: 0.75rem;
    }
    
    .lock-box-size {
        font-size: 0.7rem;
    }
    
    /* Zone Header */
    .zone-header h3 {
        font-size: 1.1rem;
    }
    
    .zone-header p {
        font-size: 0.75rem;
    }
    
    /* Legend */
    .legend {
        gap: 0.6rem;
    }
    
    .legend-item {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
    
    .legend-color {
        width: 12px;
        height: 12px;
    }
    
    /* Date Picker */
    .date-picker-form label {
        font-size: 0.85rem;
    }
    
    .date-picker-form input,
    .date-picker-form button {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    /* Booking Form */
    .booking-form {
        padding: 1rem 0.8rem;
    }
    
    .booking-id {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .btn i {
        font-size: 0.9rem;
    }
    
    /* Success Page */
    .success-container {
        padding: 1rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .success-container h2 {
        font-size: 1.5rem;
    }
    
    .success-container p {
        font-size: 0.9rem;
    }
    
    .booking-details {
        padding: 0.8rem;
    }
    
    .detail-item {
        font-size: 0.85rem;
        padding: 0.6rem 0;
    }
    
    .detail-label {
        font-size: 0.8rem;
    }
    
    .detail-value {
        font-size: 0.85rem;
    }
    
    /* QR Code */
    .qr-code {
        padding: 0.8rem;
    }
    
    .qr-code img {
        max-width: 180px;
    }
    
    /* Booking Card */
    .booking-card {
        padding: 0.8rem;
    }
    
    .booking-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .booking-card-header h3 {
        font-size: 1rem;
    }
    
    .booking-card-body {
        gap: 0.6rem;
    }
    
    .booking-info-item {
        font-size: 0.8rem;
    }
    
    /* Status Badge */
    .status-badge {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
    
    /* Admin */
    .admin-container {
        padding: 0.8rem;
    }
    
    .admin-header h1 {
        font-size: 1.3rem;
    }
    
    .stat-card {
        padding: 1rem 0.8rem;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .admin-table table {
        font-size: 0.75rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.5rem 0.3rem;
    }
    
    .admin-section-title {
        font-size: 1.2rem;
    }
    
    /* Footer */
    footer {
        padding: 1rem;
        font-size: 0.8rem;
    }
}

/* Global phone number styling - remove underlines and blue color */
a[href^="tel:"], 
a[href*="080-434-9999"],
p:contains("080-434-9999") a,
*:contains("080-434-9999") {
    text-decoration: none !important;
    color: inherit !important;
    border-bottom: none !important;
}

/* Ensure phone numbers are not styled as links */
.footer-section p,
.contact-info p,
footer p {
    color: inherit;
}

.footer-section p:contains("080-434-9999"),
.contact-info p:contains("080-434-9999"),
footer p:contains("080-434-9999") {
    text-decoration: none !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Override - Confirmed Lock สีเขียวสด (จองแล้ว) */
.lock-box.confirmed {
    background: #4CAF50 !important;
    color: #fff !important;
    cursor: not-allowed !important;
    border-color: #388E3C !important;
    border-width: 2px !important;
}

.lock-box.confirmed:hover {
    background: #4CAF50 !important;
    transform: none !important;
    cursor: not-allowed !important;
}

/* Status box - Reserved (ล้อคประจำ) */
.status-box.reserved {
    background: #9e9e9e;
    border-color: #1a1a1a;
}

/* ========================================
   ซ่อนข้อความในล้อคทั้งหมด - แสดงแค่สี
   ======================================== */
.lock-box-number,
.lock-box-price {
    display: none !important;
}
