:root {
    --primary-gold: #0284c7;
    --primary-gold-dark: #0369a1;
    --dark-red: #e0f2fe;
    --darker-red: #bae6fd;
    --background-dark: #ffffff;
    --text-light: #1e293b;
    --text-gray: #64748b;
}

body, html {
    margin: 0;
    padding: 0;
    background-color: var(--background-dark);
    color: var(--text-light);
    font-family: 'Kanit', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* NAVBAR */
.navbar {
    background: rgba(255, 255, 255, 0.9); box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(2, 132, 199, 0.1);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Kanit', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(197, 160, 89, 0.2);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    font-family: 'Kanit', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--text-light);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* DROPDOWN MENU */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    z-index: 1000;
    top: 100%;
    left: 0;
    border: 1px solid rgba(2, 132, 199, 0.1);
    border-top: 2px solid var(--primary-gold);
    border-radius: 0 0 5px 5px;
    padding: 10px 0;
    margin-top: 15px; /* Offset for space from navbar bottom */
}

/* Add an invisible bridge so hover doesn't break when moving mouse down */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 15px;
}

.dropdown-content a {
    color: var(--text-light);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: 0.3s;
}

.dropdown-content a::after {
    display: none; /* Disable underline for dropdown */
}

.dropdown-content a:hover {
    background-color: rgba(2, 132, 199, 0.08);
    color: var(--primary-gold);
    padding-left: 25px;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDropdown 0.3s ease;
}

@keyframes fadeInDropdown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001; /* Above mobile-nav */
}

.mobile-menu-btn .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-light);
    transition: 0.3s;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    font-family: 'Kanit', sans-serif;
    font-size: 20px;
    color: var(--text-light);
    letter-spacing: 1px;
    transition: 0.3s;
}



.mobile-nav a:hover {
    color: var(--primary-gold);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
}

/* MAIN CONTENT */
.main-content {
    min-height: 80vh;
    padding-top: 0;
}

/* HERO BANNER SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--background-dark);
    overflow: hidden;
}
.hero-video-wrapper {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
}
.hero-bg-video {
    position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%;
    width: auto; height: auto; transform: translateX(-50%) translateY(-50%);
    object-fit: cover; opacity: 0; transition: opacity 1.5s ease-in-out;
}
.hero-bg-video.active { opacity: 1; }
.hero-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(30, 30, 30, 0.4) 0%, rgba(5, 5, 5, 0.9) 100%); z-index: 1;
}
.hero-content {
    position: relative; z-index: 2; padding: 0 20px; max-width: 800px;
}
.hero-content h1 {
    color: var(--primary-gold); font-size: 64px; margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: 4px; font-weight: 700;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
.hero-content p {
    color: var(--text-light); font-family: 'Kanit', sans-serif;
    font-size: 20px; font-weight: 300; margin-bottom: 40px; letter-spacing: 1px;
}
@media (max-width: 768px) {
    .hero-content h1 { font-size: 40px; }
    .hero-content p { font-size: 16px; }
}

/* PAGE HEADER (For internal pages) */
.page-header {
    background: linear-gradient(135deg, var(--blue-bg, #f0f9ff) 0%, #ffffff 100%);
    padding: 140px 20px 60px; text-align: center; border-bottom: 1px solid rgba(2, 132, 199, 0.12);
}
.page-header h1 {
    color: var(--primary-gold-dark, #0369a1); font-size: 42px; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px;
}
.page-header p { color: var(--text-gray, #475569); font-family: 'Kanit', sans-serif; font-size: 16px; }

/* CARDS GRID FOR HOMEPAGE */
.home-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px; padding: 60px 20px; max-width: 1200px; margin: 0 auto;
}
.category-card {
    position: relative; border-radius: 15px; overflow: hidden;
    border: 1px solid var(--primary-gold); box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    background: linear-gradient(180deg, #2A0A0A 0%, rgba(11,4,4,0.9) 100%);
    height: 350px; display: flex; flex-direction: column; align-items: center;
    justify-content: space-between; padding: 40px 20px 25px; text-align: center;
}
.category-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, rgba(42,10,10,0.4) 0%, rgba(18,3,3,0.95) 100%);
    z-index: 1; transition: background 0.3s ease; pointer-events: none;
}
.category-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.4);
    border-color: #fff;
}
.category-card:hover::after {
    background: linear-gradient(180deg, rgba(42,10,10,0.2) 0%, rgba(18,3,3,0.85) 100%);
}
.category-content { display: contents; }
.category-card h2 {
    order: 1;
    position: relative;
    z-index: 2;
    font-family: 'Kanit', sans-serif;
    color: var(--primary-gold);
    font-size: 28px;
    letter-spacing: 3px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,1);
    width: 60%;
    margin: 0 auto;
}
.category-card img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.8s ease;
}
.category-card:hover img { transform: scale(1.1); }
.category-card span {
    order: 2;
    position: relative;
    z-index: 2;
    font-family: 'Kanit', sans-serif;
    color: var(--primary-gold);
    font-size: 13px;
    letter-spacing: 4px;
    text-shadow: 1px 1px 3px rgba(0,0,0,1);
    text-transform: uppercase;
}

/* PRODUCT GRID */
.product-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px; padding: 60px 20px; max-width: 1200px; margin: 0 auto;
}
.product-card {
    background: #111; border: 1px solid #333; border-radius: 10px; overflow: hidden; transition: 0.3s;
}
.product-card:hover { border-color: var(--primary-gold); }
.product-image { width: 100%; height: 200px; object-fit: cover; }
.product-info { padding: 20px; }
.product-title {
    font-family: 'Kanit', sans-serif; font-size: 18px; color: var(--primary-gold); margin-bottom: 10px;
}
.product-price { font-size: 16px; color: var(--text-light); font-weight: 600; }

/* FOOTER */
.footer {
    background-color: #f8fafc; border-top: 1px solid rgba(2, 132, 199, 0.15); padding: 60px 20px 20px;
}
.footer-container {
    max-width: 1200px; margin: 0 auto; display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px;
}
.footer-brand h2 { color: var(--primary-gold-dark, #0369a1); margin-bottom: 15px; }
.footer-links h3, .footer-contact h3 {
    color: var(--primary-gold-dark, #0369a1); font-family: 'Kanit', sans-serif; font-size: 18px; margin-bottom: 20px;
}
.footer-links a {
    display: block; color: var(--text-gray); margin-bottom: 10px; font-family: 'Kanit', sans-serif; transition: 0.3s;
}
.footer-links a:hover { color: var(--primary-gold); padding-left: 5px; }
.footer-contact p { color: var(--text-gray); font-family: 'Kanit', sans-serif; margin-bottom: 10px; }
.footer-contact a { color: var(--primary-gold); }
.btn-partner {
    display: inline-block; background: #ffffff; color: var(--primary-gold);
    padding: 10px 20px; border: 1px solid var(--primary-gold); border-radius: 5px;
    margin-top: 15px; font-family: 'Kanit', sans-serif; transition: 0.3s;
}
.btn-partner:hover { background: var(--primary-gold); color: #ffffff; }
.footer-bottom {
    text-align: center; border-top: 1px solid rgba(2, 132, 199, 0.1); padding-top: 20px; color: #64748b; font-size: 14px;
}

/* Buttons */
.btn-primary {
    display: inline-block; background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-gold-dark) 100%);
    color: #ffffff; padding: 12px 24px; border-radius: 5px; font-family: 'Kanit', sans-serif;
    font-weight: 600; border: none; cursor: pointer; transition: 0.3s;
}
.btn-primary:hover {
    transform: scale(1.05); box-shadow: 0 0 15px rgba(2, 132, 199, 0.3);
}

/* CATEGORY HERO SECTION */
.category-hero {
    position: relative; height: 60vh; display: flex; align-items: center;
    justify-content: center; text-align: center; background-size: cover;
    background-position: center; background-attachment: fixed; margin-top: 0;
}
.category-hero::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(2, 132, 199, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%); z-index: 1;
}
.category-hero-content {
    position: relative; z-index: 2; padding: 0 20px; max-width: 800px;
}
.category-hero-content h1 {
    color: var(--primary-gold); font-size: 54px; letter-spacing: 3px;
    margin-bottom: 15px; text-transform: uppercase;
}
.category-hero-content p {
    color: var(--text-light); font-size: 18px; font-weight: 300;
}

/* FEATURES GRID */
.features-section {
    padding: 60px 20px;
    background-color: #f8fafc;
    border-bottom: 1px solid rgba(2, 132, 199, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.feature-box {
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(2, 132, 199, 0.12);
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.feature-box:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(2, 132, 199, 0.08);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-box h3 {
    color: var(--primary-gold);
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* MOCKUP LABEL */
.mockup-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--dark-red);
    color: var(--text-light);
    padding: 5px 12px;
    font-size: 12px;
    font-family: 'Kanit', sans-serif;
    border-radius: 20px;
    border: 1px solid var(--primary-gold);
    z-index: 10;
    opacity: 0.9;
}

.feature-icon i {
    color: var(--primary-gold);
}
/* --- LUXURY REDESIGN SECTIONS --- */

/* SECTION TITLES */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-family: 'Kanit', sans-serif;
    color: var(--primary-gold);
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 42px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary-gold);
}

/* FEATURED COLLECTION */
.featured-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--background-dark) 0%, #120303 100%);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-card {
    background: linear-gradient(180deg, #2A0A0A 0%, rgba(11,4,4,0.9) 100%);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(197, 160, 89, 0.2);
    transition: 0.4s ease;
}

.featured-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.15);
}

/* Glassmorphism Shine Effect */
.featured-card::before, .category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: skewX(-25deg);
    z-index: 10;
    transition: 0.6s;
    pointer-events: none;
}
.featured-card:hover::before, .category-card:hover::before {
    left: 150%;
    transition: 0.6s ease-in-out;
}

.featured-img-wrap {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.featured-card:hover .featured-img-wrap img {
    transform: scale(1.1);
}

.featured-content {
    padding: 30px 25px;
    text-align: center;
}

.featured-category {
    font-family: 'Kanit', sans-serif;
    color: var(--text-gray);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.featured-content h3 {
    font-size: 24px;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.featured-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 25px;
    font-family: 'Kanit', sans-serif;
    opacity: 0.8;
}

.btn-outline-gold {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-outline-gold:hover {
    background: var(--primary-gold);
    color: #000;
}

/* THE MONARCH EXPERIENCE */
.experience-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #120303 0%, var(--background-dark) 100%);
    border-top: 1px solid rgba(197, 160, 89, 0.1);
    border-bottom: 1px solid rgba(2, 132, 199, 0.1);
}

.experience-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.experience-content, .experience-image {
    flex: 1;
    min-width: 300px;
}

.experience-content h2 {
    font-size: 38px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.experience-content p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    font-family: 'Kanit', sans-serif;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.experience-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.experience-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid rgba(2, 132, 199, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-gold);
    font-size: 20px;
}

.experience-item-text h4 {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 5px;
    font-family: 'Kanit', sans-serif;
}

.experience-item-text p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.experience-image {
    position: relative;
    padding: 10px;
    border: 1px solid var(--primary-gold);
    border-radius: 20px;
    background: rgba(197, 160, 89, 0.05);
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
}

.experience-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    display: block;
    position: relative;
    z-index: 1;
}

.experience-image::before {
    display: none;
}

/* TESTIMONIALS */
.testimonial-section {
    padding: 80px 20px;
    background: url('https://images.unsplash.com/photo-1551044431-15fe9a45ce37?q=80&w=1920&auto=format&fit=crop') center/cover fixed;
    position: relative;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(5,5,5,0.85);
}

.testimonial-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 2;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.testimonial-marquee-track {
    display: flex;
    width: max-content;
    gap: 30px;
    animation: scrollMarquee 40s linear infinite;
    padding: 10px 0;
}

.testimonial-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

.testimonial-card {
    width: 380px;
    flex-shrink: 0;
    background: linear-gradient(145deg, rgba(42,10,10,0.85), rgba(18,3,3,0.95));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(2, 132, 199, 0.1);
    padding: 40px 35px;
    border-radius: 15px;
    text-align: left;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testi-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    object-fit: cover;
}

.testi-meta {
    display: flex;
    flex-direction: column;
}

.testimonial-author {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    font-family: 'Kanit', sans-serif;
}

.testimonial-role {
    color: var(--text-gray);
    font-size: 12px;
    font-family: 'Kanit', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

.testi-stars {
    color: var(--primary-gold);
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-family: 'Kanit', sans-serif;
    font-style: italic;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

/* BRANDS / PARTNERS */
.brand-section {
    padding: 50px 20px;
    background: #000;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
}

.brand-scroll {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0.6;
}

.brand-scroll span {
    font-family: 'Kanit', sans-serif;
    font-size: 24px;
    color: var(--text-gray);
    letter-spacing: 3px;
    transition: 0.3s;
    cursor: default;
}

.brand-scroll span:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
}

@media (max-width: 768px) {
    .section-title { font-size: 32px; }
    .experience-container { flex-direction: column-reverse; }
    .brand-scroll { gap: 30px; }
    .brand-scroll span { font-size: 18px; }
    .experience-image::before { display: none; }
}

/* Premium Reveal Effects */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal-up.is-visible {
    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; }

/* Elevated Hover Effects for all cards across site */
.adv-card, .featured-card, .category-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.adv-card:hover, .featured-card:hover, .category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.15);
}

/* HERO SECTION */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-video.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(10, 10, 10, 0.4) 0%, 
        rgba(10, 10, 10, 0.7) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 50px;
}

.hero-content h1 {
    font-size: 60px;
    color: var(--primary-gold);
    letter-spacing: 5px;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.5s;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.8s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PREMIUM PAGE TRANSITION OVERLAY */
#page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.25s ease-out, visibility 0.25s;
    pointer-events: none;
}

/* Glassmorphism Shine Effect */
.featured-card::before, .category-card::before, .modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-25deg);
    z-index: 10;
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}
.featured-card:hover::before, .category-card:hover::before, .modern-card:hover::before {
    left: 150%;
}


/* LUXURY LIFESTYLE BLOG (JOURNAL) */
.journal-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #120303 0%, var(--background-dark) 100%);
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.journal-card {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(2, 132, 199, 0.1);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    align-items: flex-end;
    text-decoration: none;
}

.journal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.4);
    border-color: var(--primary-gold);
}

.journal-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: 1;
    transition: background 0.5s ease;
}

.journal-card:hover .journal-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.journal-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 100%;
}

.journal-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--primary-gold);
    color: #000;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Kanit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.journal-title {
    font-family: 'Kanit', sans-serif;
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 1px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.journal-card:hover .journal-title {
    color: var(--primary-gold);
}

.journal-excerpt {
    font-family: 'Kanit', sans-serif;
    color: #ccc;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.journal-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s ease;
}

.journal-card:hover .journal-btn {
    opacity: 1;
    transform: translateY(0);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 350px;
    background: rgba(15, 5, 5, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid var(--primary-gold);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    border-radius: 8px;
    padding: 25px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.cookie-banner.visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner.hidden {
    display: none !important;
}

.cookie-content h4 {
    font-family: 'Kanit', sans-serif;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 10px;
}

.cookie-content p {
    font-family: 'Kanit', sans-serif;
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
}

.cookie-actions .btn-primary {
    padding: 8px 16px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        width: 100%;
        border-radius: 12px 12px 0 0;
        border-bottom: none;
        border-left: none;
        border-right: none;
    }
}


.nav-links .dropdown > a::after { display: none !important; }

