/**
 * TipsyDiary - Main Stylesheet
 * Design inspired by Amrit Palace elegant aesthetic
 * 
 * Color Palette:
 * - Primary Gold: #d49653
 * - Dark Background: #2c2c2c
 * - Light Beige: #bfb4a3
 * - Deep Background: #292622
 */

/* ==========================================
   CSS Variables - Design System
   ========================================== */
:root {
    --primary-gold: #d49653;
    --dark-bg: #2c2c2c;
    --light-beige: #bfb4a3;
    --deep-bg: #292622;
    --text-light: #d8cbb8;
    --text-dark: #2c2c2c;
    --border-light: rgba(44, 44, 44, 0.2);
    --border-lighter: rgba(44, 44, 44, 0.15);
    
    /* Typography */
    --font-display: 'Georgia', 'Times New Roman', serif;
    --font-body: 'Segoe UI', 'Microsoft JhengHei', sans-serif;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 42px;
    --spacing-xl: 72px;
    
    /* Transitions */
    --transition-smooth: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-quick: all 0.3s ease;
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--deep-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c28543;
}

/* Selection Color */
::selection {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
}

::-moz-selection {
    background-color: var(--primary-gold);
    color: var(--dark-bg);
}

/* ==========================================
   Typography
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--text-light);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.8rem);
    margin-bottom: var(--spacing-sm);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.6rem);
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: var(--spacing-sm);
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition-quick);
}

a:hover {
    opacity: 0.8;
}

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

.wrapper {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* ==========================================
   Header Styles
   ========================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: transparent !important;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Text shadow for visibility when transparent */
.main-header:not(.scrolled) .brand-text,
.main-header:not(.scrolled) .nav-link,
.main-header:not(.scrolled) .action-btn,
.main-header:not(.scrolled) .nav-text {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9),
                 0 4px 24px rgba(0, 0, 0, 0.7);
}

/* Logo visibility enhancement when transparent */
.main-header:not(.scrolled) .brand-logo {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
}

.main-header.scrolled {
    background: rgba(41, 38, 34, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 150, 83, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.main-header.scrolled .brand-text,
.main-header.scrolled .nav-link,
.main-header.scrolled .action-btn,
.main-header.scrolled .nav-text {
    text-shadow: none;
}

.main-header.scrolled .brand-logo {
    filter: none;
}

.header-content-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    max-width: 1600px;
    margin: 0 auto;
    gap: var(--spacing-lg);
}

/* Logo on left */
.logo-area {
    order: 0;
    justify-self: start;
}

/* Nav in center */
.main-nav {
    order: 1;
    justify-self: center;
}

/* Right actions on right */
.right-actions {
    order: 2;
    justify-self: end;
}

/* Logo Area */
.logo-area .brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    width: 50px;
    height: 50px; 
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-gold);
    letter-spacing: -0.02em;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: clamp(16px, 3vw, 32px);
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    display: inline-block;
    padding: 10px 4px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 400;
    transition: var(--transition-quick);
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

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

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

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

/* Right Action Buttons */
.right-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 4px;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition-quick);
}

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

.action-btn i {
    font-size: 1.1rem;
}

.action-separator {
    width: 1px;
    height: 24px;
    background: rgba(212, 150, 83, 0.3);
}

/* Hamburger Menu - Minimal Luxe Design */
.hamburger-menu {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1001;
    width: 44px;
    height: 44px;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    transform: scale(1.08);
}

.hamburger-bar {
    height: 2px;
    background: var(--primary-gold);
    transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
    border-radius: 2px;
    display: block;
    position: relative;
}

.hamburger-bar:nth-child(1) {
    width: 28px;
}

.hamburger-bar:nth-child(2) {
    width: 22px;
}

.hamburger-bar:nth-child(3) {
    width: 28px;
}

/* Hover Effect - Expand all lines */
.hamburger-menu:hover .hamburger-bar:nth-child(2) {
    width: 28px;
}

/* Active State - Elegant X */
.hamburger-menu.active {
    gap: 0;
}

.hamburger-menu.active .hamburger-bar {
    width: 26px !important;
}

.hamburger-menu.active .hamburger-bar:nth-child(1) {
    transform: rotate(45deg) translateY(0px);
}

.hamburger-menu.active .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-menu.active .hamburger-bar:nth-child(3) {
    transform: rotate(-45deg) translateY(0px);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

/* ==========================================
   Hero Banner Section - Amrit Palace Exact Layout
   ========================================== */
.banner {
        position: relative;
    width: 100vw;
    height: 100vh;
        overflow: hidden;
}

.banner-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #292622 0%, #3d3530 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.banner-overlay {
        position: absolute;
    inset: 0;
    background: linear-gradient(rgba(41, 38, 34, 0.7), rgba(41, 38, 34, 0.85));
    pointer-events: none;
}

.hero-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: clamp(6em, 10vh, 9em) var(--spacing-lg) var(--spacing-xl);
}

/* Hero Captions */
.hero-caption-left {
    text-align: left;
    margin-bottom: 20px;
}

.hero-caption-left span {
    color: var(--text-light);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Hero Headline */
.hero-headline {
    flex: 1;
    display: flex;
        flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(12px, 2vh, 20px);
}

.hero-title-line1,
.hero-title-line2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.1;
    letter-spacing: -0.02em;
        margin: 0;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-row {
        display: flex;
        align-items: center;
    flex-wrap: wrap;
    gap: clamp(12px, 2vw, 24px);
        width: 100%;
}

.subtitle-left,
.subtitle-right {
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.08em;
    opacity: 0.85;
    white-space: nowrap;
}

.subtitle-left {
    order: 1;
}

.hero-title-line2 {
    order: 2;
}

.subtitle-right {
    order: 3;
    margin-left: auto;
}

/* Hero Bottom Content */
.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--spacing-lg);
}

.hero-description {
    max-width: 520px;
}

.hero-description p {
    color: var(--text-light);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
}

/* Google Rating Card */
.rating-card {
    background: var(--light-beige);
    border-radius: 4px;
    padding: 16px 20px;
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.rating-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(44, 44, 44, 0.15);
}

.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    color: var(--primary-gold);
        font-size: 1rem;
}

.google-icon i {
        font-size: 1.2rem;
    color: #4285F4;
}

.rating-content {
    display: flex;
    gap: 16px;
    padding-top: 16px;
}

.rating-score {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.score-big {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--dark-bg);
    line-height: 1;
}

.score-small {
    font-size: 1.2rem;
    color: rgba(44, 44, 44, 0.7);
}

.rating-text {
    flex: 1;
}

.rating-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 4px;
}

.rating-count {
    font-size: 0.85rem;
    color: rgba(44, 44, 44, 0.7);
}

.review-count {
    font-weight: 500;
    color: var(--dark-bg);
}

/* Quick Buttons */
.quick-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.btn {
    display: inline-block;
    padding: 16px 42px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 4px;
    border: 1px solid var(--primary-gold);
    transition: var(--transition-smooth);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn:hover {
    background: transparent;
    color: var(--primary-gold);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(212, 150, 83, 0.3);
}

.btn-secondary,
.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover,
.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

/* ==========================================
   Features Section
   ========================================== */
.features {
    background: var(--light-beige);
    padding: var(--spacing-xl) 0;
    position: relative;
}

.features h2 {
    text-align: center;
    color: var(--dark-bg);
    margin-bottom: var(--spacing-xl);
    font-size: clamp(2rem, 4vw, 3.8rem);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-lg);
    border-radius: 6px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: var(--primary-gold);
    transition: left 0.5s ease;
}

.feature-item:hover::before {
    left: 0;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-gold);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary-gold);
    margin-bottom: var(--spacing-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.feature-item h3 {
    color: var(--dark-bg);
    margin-bottom: var(--spacing-sm);
    font-size: 1.8rem;
}

.feature-item p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ==========================================
   Latest News Section
   ========================================== */
.latest-news {
    background: var(--dark-bg);
    padding: var(--spacing-xl) 0;
}

.latest-news h2 {
    text-align: center;
    color: var(--primary-gold);
    margin-bottom: var(--spacing-xl);
}

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

.news-item {
    background: rgba(191, 180, 163, 0.1);
    border: 1px solid var(--border-lighter);
    border-radius: 4px;
    padding: var(--spacing-lg);
    transition: var(--transition-smooth);
    position: relative;
}

.news-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 150, 83, 0.2);
}

.news-date {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
}

.news-item h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.news-item p {
    color: rgba(216, 203, 184, 0.85);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.read-more {
    color: var(--primary-gold);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.read-more::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(4px);
}

/* ==========================================
   Stats Section
   ========================================== */
.stats {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #c28543 100%);
    padding: var(--spacing-xl) 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    text-align: center;
}

.stat-item {
    padding: var(--spacing-md);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.1);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--dark-bg);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(44, 44, 44, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   Footer Styles
   ========================================== */
.site-footer {
    background: var(--deep-bg);
    border-top: 1px solid rgba(212, 150, 83, 0.2);
    padding: 60px 0 0;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col.footer-brand-col h3 {
    font-family: var(--font-display);
    color: var(--primary-gold);
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 12px;
}

.footer-brand-slogan {
    color: var(--primary-gold);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.footer-brand-desc {
    color: rgba(216, 203, 184, 0.85);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 150, 83, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 50%;
    color: var(--primary-gold);
    font-size: 1.2rem;
    transition: var(--transition-quick);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-4px);
}

.footer-col h4 {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col h4 i {
    font-size: 1.1rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: rgba(216, 203, 184, 0.85);
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-quick);
}

.footer-list a:hover {
    color: var(--primary-gold);
    padding-left: 8px;
}

.footer-list a i {
    font-size: 0.9rem;
}

.footer-list.service-list li {
    color: rgba(216, 203, 184, 0.85);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-list.service-list i {
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(216, 203, 184, 0.85);
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
}

.footer-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--primary-gold);
}

.footer-line-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(212, 150, 83, 0.1);
    border: 2px solid var(--primary-gold);
    border-radius: 8px;
    color: var(--primary-gold);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-quick);
    margin-top: 8px;
}

.footer-line-btn:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(212, 150, 83, 0.4);
}

.footer-line-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

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

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid rgba(212, 150, 83, 0.2);
}

.footer-copyright {
    color: rgba(216, 203, 184, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(212, 150, 83, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark-bg);
    color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(212, 150, 83, 0.6);
}

.back-to-top i {
    animation: bounceUp 2s ease-in-out infinite;
}

@keyframes bounceUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

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

@keyframes fadeIn {
    from {
    opacity: 0;
}
    to {
    opacity: 1;
    }
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 991px) {
    :root {
        --spacing-lg: 32px;
        --spacing-xl: 52px;
    }
    
    .features-grid,
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* ==========================================
   Responsive Design - Tablet
   ========================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* ==========================================
   Responsive Design - Mobile
   ========================================== */
@media (max-width: 768px) {
    .site-footer {
        padding: 36px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-bottom: 32px;
    }
    
    /* Mobile Brand Section */
    .footer-col.footer-brand-col {
        text-align: center;
        padding-bottom: 32px;
        border-bottom: 1px solid rgba(212, 150, 83, 0.2);
    }
    
    .footer-col.footer-brand-col h3 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .footer-brand-slogan {
        font-size: 1rem;
        margin-bottom: 14px;
    }
    
    .footer-brand-desc {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 0;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        color: rgba(216, 203, 184, 0.8);
    }
    
    /* Other Columns - Compact Layout */
    .footer-col:not(.footer-brand-col) {
        padding: 0 8px;
    }
    
    .footer-col:not(.footer-brand-col) h4 {
        font-size: 1.1rem;
        margin-bottom: 16px;
        text-align: center;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(212, 150, 83, 0.15);
        justify-content: center;
    }
    
    .footer-col:not(.footer-brand-col) h4 i {
        margin-right: 8px;
    }
    
    /* Compact Lists */
    .footer-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .footer-list li {
        margin-bottom: 0;
        text-align: center;
    }
    
    .footer-list a {
        font-size: 0.92rem;
        padding: 8px 12px;
        background: rgba(212, 150, 83, 0.05);
        border-radius: 6px;
        justify-content: center;
        text-align: center;
    }
    
    .footer-list a:hover {
        padding-left: 12px;
        background: rgba(212, 150, 83, 0.1);
    }
    
    .footer-list a:active {
        background: rgba(212, 150, 83, 0.15);
    }
    
    .footer-list a i {
        display: none;
    }
    
    /* Service List - Simplified */
    .footer-list.service-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .footer-list.service-list li {
        font-size: 0.92rem;
        padding: 6px 12px;
        background: rgba(212, 150, 83, 0.05);
        border-radius: 6px;
        justify-content: center;
        text-align: center;
        margin-bottom: 0;
    }
    
    .footer-list.service-list i {
        font-size: 0.85rem;
        margin-right: 6px;
    }
    
    /* LINE Button - Full Width */
    .footer-line-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1.05rem;
        margin-top: 8px;
    }
    
    .footer-line-btn:hover {
        transform: none;
    }
    
    .footer-line-btn:active {
        transform: scale(0.98);
    }
    
    /* Back to Top */
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1.1rem;
    }
    
    /* Mobile Header Layout */
    .header-content-wrapper {
        grid-template-columns: 1fr auto;
        padding: var(--spacing-sm) var(--spacing-md);
        gap: var(--spacing-md);
    }
    
    /* Hide right actions on mobile */
    .right-actions {
        display: none;
    }
    
    /* Logo on left for mobile */
    .logo-area {
        order: 0;
        justify-self: start;
    }
    
    /* Hamburger on right */
    .hamburger-menu {
        order: 1;
        justify-self: end;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: transparent;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: var(--spacing-xl);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }
    
    .main-nav.active {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        max-width: 500px;
        gap: 0;
        background: linear-gradient(135deg, 
            rgba(41, 38, 34, 0.95) 0%, 
            rgba(51, 44, 39, 0.95) 100%);
        border: 2px solid var(--primary-gold);
        border-radius: 24px;
        padding: var(--spacing-lg) 0;
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.6),
            0 0 0 1px rgba(212, 150, 83, 0.3),
            inset 0 1px 0 rgba(212, 150, 83, 0.2);
        position: relative;
        overflow: hidden;
    }
    
    .nav-list::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
        border-radius: 2px;
    }
    
    .nav-list::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
        border-radius: 2px;
    }
    
    .nav-link {
        width: 100%;
        padding: 18px 32px;
        justify-content: center;
        font-size: 1.15rem;
        font-weight: 400;
        letter-spacing: 0.5px;
        color: rgba(216, 203, 184, 0.9);
        position: relative;
        transition: all 0.3s ease;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        left: 32px;
        right: 32px;
        bottom: 0;
        height: 1px;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(212, 150, 83, 0.2), 
            transparent);
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--primary-gold);
        background: rgba(212, 150, 83, 0.08);
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Hide nav items initially on mobile */
    .main-nav:not(.active) .nav-item {
        opacity: 0;
        transform: translateY(20px);
    }
    
    /* Progressive fade-in animation for nav items */
    .main-nav.active .nav-item {
        animation: navItemFadeIn 0.5s ease forwards;
    }
    
    .main-nav.active .nav-item:nth-child(1) { animation-delay: 0.05s; }
    .main-nav.active .nav-item:nth-child(2) { animation-delay: 0.1s; }
    .main-nav.active .nav-item:nth-child(3) { animation-delay: 0.15s; }
    .main-nav.active .nav-item:nth-child(4) { animation-delay: 0.2s; }
    .main-nav.active .nav-item:nth-child(5) { animation-delay: 0.25s; }
    .main-nav.active .nav-item:nth-child(6) { animation-delay: 0.3s; }
    
    @keyframes navItemFadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .hamburger-menu {
    display: flex;
    }
    
    .mobile-nav-overlay {
        display: block;
    }
    
    /* Hero Section Mobile */
    .hero-wrapper {
        padding: 5em var(--spacing-md) var(--spacing-lg);
    }
    
    .hero-caption-left {
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-caption-left span {
        font-size: 0.85rem;
    }
    
    .hero-headline {
        gap: var(--spacing-sm);
    }
    
    .hero-title-line1,
    .hero-title-line2 {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.15;
    }
    
    .hero-subtitle-row {
        gap: 10px;
    }
    
    .subtitle-left,
    .subtitle-right {
        font-size: 0.7rem;
    }
    
    .subtitle-right {
        margin-left: 0;
        width: auto;
    }
    
    .hero-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-md);
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-description p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .rating-card {
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }
    
    .quick-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
    width: 100%;
        max-width: 300px;
    }
    
}

@media (max-width: 480px) {
    :root {
        --spacing-xs: 6px;
        --spacing-sm: 12px;
        --spacing-md: 16px;
        --spacing-lg: 24px;
        --spacing-xl: 36px;
    }
    
    .header-content-wrapper {
        padding: var(--spacing-sm) var(--spacing-md);
        gap: var(--spacing-sm);
    }
    
    .brand-logo {
        width: 36px;
        height: 36px;
    }
    
    .brand-text {
        font-size: 1.15rem;
    }

    .banner-background {
        background-attachment: scroll;
    }
    
    .hero-wrapper {
        padding: 4.5em var(--spacing-md) var(--spacing-lg);
    }
    
    .hero-caption-left span {
        font-size: 0.75rem;
    }
    
    .hero-title-line1,
    .hero-title-line2 {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        line-height: 1.2;
    }
    
    .hero-subtitle-row {
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .subtitle-left,
    .subtitle-right {
        font-size: 0.65rem;
    }
    
    .subtitle-right {
        width: 100%;
    }
    
    .hero-description p {
        font-size: 0.9rem;
    }
    
    .rating-card {
        padding: 12px 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .site-footer {
        padding: 28px 0 0;
    }
    
    .footer-grid {
        gap: 28px;
        margin-bottom: 24px;
    }
    
    /* Smaller Brand Section */
    .footer-col.footer-brand-col {
        padding-bottom: 24px;
    }
    
    .footer-col.footer-brand-col h3 {
        font-size: 1.5rem;
    }
    
    .footer-brand-slogan {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .footer-brand-desc {
        font-size: 0.86rem;
        max-width: 95%;
        line-height: 1.6;
    }
    
    /* Compact Headers */
    .footer-col:not(.footer-brand-col) h4 {
        font-size: 1.05rem;
        margin-bottom: 14px;
        justify-content: center;
        text-align: center;
    }
    
    .footer-col:not(.footer-brand-col) h4 i {
        margin-right: 8px;
    }
    
    /* Smaller Lists */
    .footer-list {
        gap: 8px;
    }
    
    .footer-list li {
        text-align: center;
    }
    
    .footer-list a {
        font-size: 0.88rem;
        padding: 7px 10px;
        text-align: center;
    }
    
    .footer-list.service-list {
        gap: 6px;
    }
    
    .footer-list.service-list li {
        font-size: 0.88rem;
        padding: 5px 10px;
        text-align: center;
    }
    
    .footer-list.service-list i {
        font-size: 0.8rem;
        margin-right: 6px;
    }
    
    /* LINE Button on Small Screens */
    .footer-line-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    /* Footer Bottom */
    .footer-bottom {
        padding: 18px 0;
    }
    
    .footer-copyright {
        font-size: 0.84rem;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 16px;
        right: 16px;
        font-size: 1rem;
    }
}

/* ==========================================
   Utility Classes
   ========================================== */
.utility-nav {
    display: none;
}

/* ==========================================
   Page Hero Section (Shared for all pages)
   ========================================== */
.page-hero {
    position: relative;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--deep-bg) 0%, #3d3530 100%);
    padding-top: 80px;
    padding-bottom: 40px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(41, 38, 34, 0.3) 0%, rgba(61, 53, 48, 0.3) 100%);
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

/* Hero Overlay with SVG Frame */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(41, 38, 34, 0.85) 0%, 
        rgba(51, 44, 39, 0.9) 50%,
        rgba(41, 38, 34, 0.85) 100%);
    z-index: 2;
    pointer-events: none;
}

.overlay-frame-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* SVG Frame Animation Elements */
.frame-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.frame-dot {
    opacity: 0;
    transform-origin: center;
}

.glass-outline,
.elegant-curve {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

.page-hero .container {
    position: relative;
    z-index: 4;
}

.page-hero .hero-content {
    text-align: center;
    padding: var(--spacing-md) 0;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.15em;
}

.page-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--primary-gold);
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* ==========================================
   Events Page Styles
   ========================================== */

/* Featured Event Section */
.event-featured-section {
    background: linear-gradient(135deg, #1a1614 0%, #2a2420 100%);
    padding: 100px 0;
    position: relative;
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-intro h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-gold);
    margin-bottom: 16px;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.section-intro p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.event-featured-card {
    background: linear-gradient(135deg, rgba(41, 38, 34, 0.6) 0%, rgba(26, 22, 20, 0.6) 100%);
    border: 1px solid rgba(212, 150, 83, 0.2);
    border-radius: 20px;
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-featured-card:hover {
    border-color: rgba(212, 150, 83, 0.5);
    box-shadow: 0 20px 60px rgba(212, 150, 83, 0.15);
}

.event-badge {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
}

.event-title-group {
    margin-bottom: 30px;
}

.event-title-zh {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 12px;
    font-weight: 300;
    letter-spacing: 0.03em;
}

.event-title-en {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    font-weight: 300;
}

.event-intro {
    background: rgba(212, 150, 83, 0.08);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.event-intro p {
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
}

.event-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.event-featured-section .info-card {
    background: rgba(212, 150, 83, 0.05);
    border: 1px solid rgba(212, 150, 83, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.event-featured-section .info-card:hover {
    border-color: rgba(212, 150, 83, 0.5);
    background: rgba(212, 150, 83, 0.1);
    transform: translateY(-5px);
}

.event-featured-section .info-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 16px;
}

.event-featured-section .info-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 400;
}

.event-featured-section .info-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.event-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Events Moments Split Screen */
.events-moments-split {
    min-height: 100vh;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.moments-container {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 100vh;
    position: relative;
}

.moments-text-side {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(44, 44, 44, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.moments-header {
    margin-bottom: 60px;
}

.moments-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--primary-gold);
    margin-bottom: 16px;
    font-weight: 300;
    letter-spacing: 3px;
}

.moments-header p {
    font-size: 1.2rem;
    color: rgba(216, 203, 184, 0.8);
    font-weight: 300;
}

.moments-nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.moment-nav-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    cursor: pointer;
    padding: 24px;
    border-left: 3px solid rgba(212, 150, 83, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    transform: translateX(-20px);
}

.moment-nav-item:hover {
    opacity: 0.8;
    transform: translateX(0);
}

.moment-nav-item.active {
    opacity: 1;
    transform: translateX(0);
    border-left-color: var(--primary-gold);
    background: rgba(212, 150, 83, 0.05);
}

.moment-number {
    font-size: 3rem;
    font-weight: 200;
    color: var(--primary-gold);
    line-height: 1;
    font-family: var(--font-display);
}

.moment-text h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 400;
}

.moment-text p {
    font-size: 1rem;
    color: rgba(216, 203, 184, 0.7);
    margin-bottom: 12px;
}

.moment-details {
    font-size: 0.95rem;
    color: rgba(216, 203, 184, 0.6);
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.moment-nav-item.active .moment-details {
    max-height: 200px;
    opacity: 1;
    margin-top: 12px;
}

.moments-image-side {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.moments-images-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    line-height: 0;
}

.moment-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    line-height: 0;
}

.moment-image.active {
    pointer-events: auto;
    z-index: 2;
}

.moment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.moment-image:hover .image-overlay {
    opacity: 1;
}

.overlay-text {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.moment-image:hover .overlay-text {
    transform: translateY(0);
}

.overlay-label {
    display: block;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.overlay-icon {
    font-size: 3rem;
    color: var(--primary-gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    z-index: 10;
}

.scroll-indicator i {
    display: block;
    margin-top: 8px;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .moments-container {
        grid-template-columns: 1fr;
    }
    
    .moments-text-side {
        padding: 60px 40px;
        min-height: auto;
    }
    
    .moments-image-side {
        position: relative;
        height: 60vh;
    }
    
    .event-featured-card {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .moments-text-side {
        padding: 40px 24px;
    }
    
    .moments-header h2 {
        font-size: 2rem;
    }
    
    .moment-nav-item {
        gap: 16px;
        padding: 16px;
    }
    
    .moment-number {
        font-size: 2rem;
    }
    
    .moment-text h3 {
        font-size: 1.4rem;
    }
    
    .moments-image-side {
        height: 50vh;
    }
    
    .event-featured-card {
        padding: 30px 20px;
    }
    
    .event-info-grid {
        grid-template-columns: 1fr;
    }
    
    .event-cta-buttons {
        flex-direction: column;
    }
    
    .event-cta-buttons .btn {
        width: 100%;
    }
}

.event-main {
    background: var(--light-beige);
    padding: var(--spacing-xl) 0;
}

.event-featured {
    background: white;
    border-radius: 8px;
    padding: var(--spacing-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Event Video */
.event-video {
    margin: 0 0 var(--spacing-xl) 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.event-video video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.event-badge {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 8px 24px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
}

.event-header {
    margin-bottom: var(--spacing-lg);
}

.event-main .event-title-group {
    border-left: 4px solid var(--primary-gold);
    padding-left: var(--spacing-md);
}

.event-main .event-title-zh {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--dark-bg);
    margin-bottom: var(--spacing-xs);
    font-weight: 400;
}

.event-main .event-title-en {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    color: rgba(44, 44, 44, 0.7);
    font-style: italic;
    font-weight: 300;
}

.event-main .event-intro {
    background: rgba(212, 150, 83, 0.08);
    padding: var(--spacing-lg);
    border-radius: 6px;
    margin-bottom: var(--spacing-lg);
}

.event-main .event-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-bg);
    margin: 0;
}

/* Event Quick Info */
.event-quick-info {
    display: grid;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-lg);
    background: rgba(212, 150, 83, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--primary-gold);
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.05rem;
    color: var(--dark-bg);
}

.quick-info-item i {
    color: var(--primary-gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.quick-info-item span {
    line-height: 1.6;
}

.event-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.detail-card {
    background: var(--light-beige);
    padding: var(--spacing-lg);
    border-radius: 6px;
    display: flex;
    gap: var(--spacing-md);
    transition: var(--transition-smooth);
}

.detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 150, 83, 0.2);
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    font-size: 1.5rem;
    color: white;
}

.detail-content h4 {
    font-size: 1rem;
    color: var(--primary-gold);
    margin-bottom: 6px;
    font-weight: 600;
}

.detail-content p {
    font-size: 0.95rem;
    color: var(--dark-bg);
    margin: 0;
    line-height: 1.6;
}

.event-section {
    margin-bottom: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(44, 44, 44, 0.1);
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--dark-bg);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: var(--primary-gold);
    font-size: 1.4rem;
}

.features-list {
    display: grid;
    gap: var(--spacing-md);
}

.feature-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.feature-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), #c28543);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
    flex-shrink: 0;
}

.feature-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-bg);
    margin: 0;
}

.highlight-content {
    background: rgba(212, 150, 83, 0.05);
    padding: var(--spacing-lg);
    border-left: 4px solid var(--primary-gold);
    border-radius: 4px;
}

.highlight-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-bg);
    margin: 0;
}

.notices-list {
    display: grid;
    gap: var(--spacing-sm);
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(212, 150, 83, 0.08);
    border-radius: 6px;
}

.notice-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.notice-item span {
    font-size: 0.95rem;
    color: var(--dark-bg);
}

.event-cta {
    background: linear-gradient(135deg, var(--deep-bg), #3d3530);
    padding: var(--spacing-lg);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.cta-content h4 {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
}

.cta-content p {
    color: rgba(216, 203, 184, 0.85);
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* More Events Section */
.more-events-section {
    background: var(--dark-bg);
    padding: var(--spacing-xl) 0;
}

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

.more-events-section .section-header h2 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.more-events-section .section-header p {
    color: rgba(216, 203, 184, 0.8);
    font-size: 1.1rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 150, 83, 0.3);
}

.event-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gold);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.event-card-badge.past {
    background: rgba(44, 44, 44, 0.6);
}

.event-card-date {
    background: linear-gradient(135deg, var(--primary-gold), #c28543);
    color: white;
    padding: var(--spacing-lg);
    text-align: center;
}

.date-month {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.date-day {
    font-size: 3rem;
    font-weight: 300;
    font-family: var(--font-display);
    line-height: 1;
    margin: 8px 0;
}

.date-year {
    font-size: 0.9rem;
    opacity: 0.8;
}

.event-card-content {
    padding: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-card-content h3 {
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.event-card-desc {
    color: rgba(44, 44, 44, 0.8);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.event-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(44, 44, 44, 0.1);
}

.event-card-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(44, 44, 44, 0.7);
}

.event-card-meta i {
    color: var(--primary-gold);
}

.event-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-quick);
}

.event-card-link:hover {
    gap: 12px;
}

.event-card-link i {
    transition: transform 0.3s ease;
}

.event-card-link:hover i {
    transform: translateX(4px);
}

.event-filter-info {
    background: rgba(212, 150, 83, 0.1);
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(212, 150, 83, 0.3);
}

.event-filter-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

/* ==========================================
   Partners Page Styles
   ========================================== */

/* Partners Showcase Section */
/* ==========================================
   Partners Showcase Section - Premium Design
   ========================================== */
.partners-showcase-section {
    background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
    padding: 100px 0;
    overflow: visible; /* Changed from hidden */
    position: relative;
}

/* 確保內容默認可見 - 防止 JavaScript 動畫失敗時內容不顯示 */
.partners-showcase-section .showcase-main-image,
.partners-showcase-section .stats-title,
.partners-showcase-section .stat-card {
    opacity: 1;
    transform: none;
}

.partners-section .partner-card {
    opacity: 1;
    transform: none;
}

.partners-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.partners-showcase-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Main Wrapper - 視差分層設計 */
.showcase-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

/* ========== Image Showcase (Left) - 3D 效果 ========== */
.image-showcase {
    position: relative;
    perspective: 1000px;
}

.showcase-main-image {
    width: 100%;
    height: auto;
    display: block !important;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1 !important;
    visibility: visible !important;
    transform-style: preserve-3d;
}

.image-showcase:hover .showcase-main-image {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 30px 80px rgba(212, 150, 83, 0.3);
}

/* 裝飾元素 */
.image-showcase::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-gold), transparent);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.image-showcase::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, transparent, var(--primary-gold));
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

/* ========== Stats Container (Right) - 浮動卡片 ========== */
.stats-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.stats-title {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: var(--spacing-md);
    font-weight: 300;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
    opacity: 1;
    position: relative;
    padding-bottom: 20px;
}

.stats-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.stat-card {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(212, 150, 83, 0.1);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 150, 83, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 15px 50px rgba(212, 150, 83, 0.2);
    border-color: var(--primary-gold);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #c28543 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(212, 150, 83, 0.3);
}

.stat-card:hover .stat-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 150, 83, 0.4);
}

.stat-icon i {
    font-size: 1.8rem;
    color: white;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.stat-number-group {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-bg);
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.stat-plus,
.stat-suffix {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold);
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Info Cards */
.showcase-info-cards {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-card {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #e8a857 100%);
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.info-card::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;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateX(8px) scale(1.05);
    box-shadow: 0 8px 24px rgba(212, 150, 83, 0.4);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 12px;
    transition: transform 0.4s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.2) rotate(5deg);
}

.info-card h4 {
    color: var(--dark-bg);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-card p {
    color: rgba(41, 38, 34, 0.8);
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design - Partners Showcase */
@media (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
}

@media (max-width: 1024px) {
    .partners-showcase-section {
        padding: 80px 0;
    }
    
    .showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .image-showcase::before,
    .image-showcase::after {
        display: none;
    }
    
    .partners-section {
        padding: 100px 0;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .partners-showcase-section {
        padding: 60px 0;
    }
    
    .showcase-wrapper {
        gap: 40px;
    }
    
    .stats-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .stats-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .stat-card {
        padding: var(--spacing-md);
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .partners-section {
        padding: 80px 0;
    }
    
    .partners-section .container {
        padding: 0 var(--spacing-md);
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .partner-logo {
        height: 200px;
    }
    
    .partner-logo img {
        width: 140px;
        height: 140px;
    }
    
    .partner-header h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .stats-title {
        font-size: 1.3rem;
        margin-bottom: var(--spacing-xs);
    }
    
    .stat-card {
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .stat-icon i {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-plus,
    .stat-suffix {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

/* Old Responsive Design */
@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .showcase-info-cards {
        flex-direction: row;
    }
    
    .card-image {
        height: 350px;
    }
    
    .wine-glass-showcase {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .showcase-info-cards {
        flex-direction: column;
    }
    
    .card-image {
        height: 280px;
    }
    
    .wine-glass-showcase {
        height: 280px;
        grid-template-columns: repeat(2, 1fr);
        padding: 12px;
        gap: 8px;
    }
    
    .glass-item.glass-1 {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .overlay-content h3 {
        font-size: 1.4rem;
    }
    
    .overlay-content p {
        font-size: 0.95rem;
    }
    
    .info-card {
        padding: var(--spacing-md);
    }
    
    .info-icon {
        font-size: 2rem;
    }
    
    .info-card h4 {
        font-size: 1.6rem;
    }
}

.partners-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f6f3 100%);
    padding: 120px 0;
    position: relative;
}

.partners-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.partners-section .section-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.partners-section .section-intro p {
    font-size: 1.2rem;
    line-height: 2;
    color: #555;
    font-weight: 300;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: var(--spacing-xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.partner-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), #c28543);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.partner-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(212, 150, 83, 0.25);
    border-color: rgba(212, 150, 83, 0.2);
}

.partner-logo {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #f9f7f5 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.partner-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212, 150, 83, 0.05) 0%, transparent 70%);
}

.partner-logo img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: 50%;
    border: 4px solid var(--primary-gold);
    background: white;
    padding: 15px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
}

.partner-card:hover .partner-logo img {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 45px rgba(212, 150, 83, 0.35);
    border-color: #c28543;
}

.partner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    padding-top: 0;
}

.partner-header h3 {
    font-size: 1.5rem;
    color: var(--dark-bg);
    font-weight: 600;
    margin: 0;
    flex: 1;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.partner-card:hover .partner-header h3 {
    color: var(--primary-gold);
}

.partner-region {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #c28543 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(212, 150, 83, 0.3);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-region {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 150, 83, 0.4);
}

.partner-info {
    display: grid;
    gap: 12px;
    margin-bottom: var(--spacing-md);
    padding: 0 var(--spacing-lg);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.info-item i {
    color: var(--primary-gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.info-item span,
.info-item a {
    color: var(--dark-bg);
    line-height: 1.5;
}

.info-item a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition-quick);
}

.info-item a:hover {
    text-decoration: underline;
}

.partner-offer {
    background: linear-gradient(135deg, rgba(212, 150, 83, 0.12), rgba(212, 150, 83, 0.08));
    padding: var(--spacing-md);
    margin: 0 var(--spacing-lg) var(--spacing-lg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 2px solid rgba(212, 150, 83, 0.25);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

.partner-card:hover .partner-offer::before {
    left: 100%;
}

.partner-card:hover .partner-offer {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(212, 150, 83, 0.18), rgba(212, 150, 83, 0.12));
}

.partner-offer i {
    color: var(--primary-gold);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.partner-offer span {
    color: var(--dark-bg);
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
}

.partners-cta {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.partners-cta h3 {
    font-size: 1.8rem;
    color: var(--dark-bg);
    margin-bottom: var(--spacing-sm);
}

.partners-cta p {
    color: rgba(44, 44, 44, 0.7);
    margin-bottom: var(--spacing-lg);
}

/* ==========================================
   Products Page Styles
   ========================================== */
.products-section {
    background: var(--light-beige);
    padding: var(--spacing-xl) 0;
}

.products-grid-memorial {
    display: grid;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.product-memorial-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.product-memorial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 150, 83, 0.25);
}

.product-memorial-card.featured {
    border: 2px solid var(--primary-gold);
}

.product-image-wrapper {
    position: relative;
    background: linear-gradient(135deg, var(--deep-bg), #3d3530);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.product-memorial-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-image-placeholder {
    text-align: center;
    color: var(--text-light);
}

.product-image-placeholder i {
    font-size: 5rem;
    margin-bottom: 16px;
    opacity: 0.7;
}

.product-image-placeholder span {
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.product-badge-free,
.product-badge-hot {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gold);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.product-badge-hot {
    top: 70px;
    background: #ff6b6b;
}

.product-content {
    padding: var(--spacing-lg);
}

.product-content h3 {
    font-size: 1.8rem;
    color: var(--dark-bg);
    margin-bottom: var(--spacing-md);
}

.product-description {
    margin-bottom: var(--spacing-lg);
}

.product-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(44, 44, 44, 0.85);
}

.product-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: var(--spacing-lg);
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 150, 83, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--dark-bg);
}

.feature-tag i {
    color: var(--primary-gold);
}

.product-how-to-get {
    background: rgba(212, 150, 83, 0.08);
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-lg);
}

.how-to-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 12px;
}

.product-how-to-get ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-how-to-get li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--dark-bg);
    line-height: 1.6;
}

.product-how-to-get li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.product-specs {
    background: var(--light-beige);
    padding: var(--spacing-md);
    border-radius: 8px;
    margin-bottom: var(--spacing-lg);
}

.product-specs h4 {
    font-size: 1.1rem;
    color: var(--dark-bg);
    margin-bottom: var(--spacing-sm);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spec-label {
        font-size: 0.85rem;
    color: rgba(44, 44, 44, 0.6);
    font-weight: 500;
}

.spec-value {
    font-size: 0.95rem;
    color: var(--dark-bg);
    font-weight: 600;
}

.product-action {
    display: flex;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(44, 44, 44, 0.1);
}

.product-action .btn {
    flex: 1;
}

.info-banner {
    background: linear-gradient(135deg, var(--primary-gold), #c28543);
    padding: var(--spacing-lg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.banner-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner-icon i {
    font-size: 2rem;
    color: white;
}

.banner-content h4 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 8px;
}

.banner-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

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

.info-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 150, 83, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), #c28543);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.info-icon i {
    font-size: 1.8rem;
    color: white;
}

.info-card h4 {
    font-size: 1.2rem;
    color: var(--dark-bg);
    margin-bottom: var(--spacing-sm);
}

.info-card p {
    color: rgba(44, 44, 44, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive for new pages */
@media (max-width: 768px) {
    .event-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .product-action {
        flex-direction: column;
    }
    
    .info-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================
   Wine Glass Gallery Styles (共用於多個頁面)
   ========================================== */

/* Wine Gallery Section for Products Page */
.wine-gallery-section {
    background: var(--dark-bg);
    padding: var(--spacing-xl) 0;
}

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

.gallery-header h2 {
    color: var(--primary-gold);
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.gallery-header p {
    color: rgba(216, 203, 184, 0.8);
    font-size: 1.1rem;
}

.wine-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item.gallery-large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

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

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 150, 83, 0.3);
    z-index: 10;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(41, 38, 34, 0.95) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--spacing-lg);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--primary-gold);
    font-size: 1.3rem;
    font-weight: 500;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Stats Decoration (for Home Page) */
.stats {
    position: relative;
    overflow: hidden;
}

.stats-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.deco-glass {
    position: absolute;
    width: 300px;
    height: 300px;
    object-fit: cover;
    opacity: 0.08;
    filter: grayscale(30%);
}

.deco-glass.deco-1 {
    top: -50px;
    left: -50px;
    transform: rotate(-15deg);
    animation: float 20s ease-in-out infinite;
}

.deco-glass.deco-2 {
    bottom: -50px;
    right: -50px;
    transform: rotate(15deg);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-15deg);
    }
    50% {
        transform: translateY(-30px) rotate(-10deg);
    }
}

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

/* Events Gallery Section */
.events-gallery-section {
    background: var(--light-beige);
    padding: var(--spacing-xl) 0;
}

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

.moment-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: white;
}

.moment-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.moment-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

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

.moment-info {
    padding: var(--spacing-lg);
    text-align: center;
    background: white;
}

.moment-info h4 {
    color: var(--dark-bg);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.moment-info p {
    color: rgba(44, 44, 44, 0.7);
    font-size: 1rem;
    margin: 0;
}

/* Responsive for Gallery Sections */
@media (max-width: 992px) {
    .wine-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
    
    .gallery-item.gallery-large {
        grid-column: span 1;
        aspect-ratio: 4/5;
    }
}

@media (max-width: 768px) {
    .wine-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-moments-grid {
        grid-template-columns: 1fr;
    }
    
    .deco-glass {
        width: 200px;
        height: 200px;
    }
    
    .gallery-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .wine-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   Hero Section - GSAP + Anime.js
   ========================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.svg-line,
.svg-dot,
.svg-path,
.svg-circle,
.svg-curve {
    opacity: 0;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 60px;
}

.hero-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
}

.hero-main {
    flex: 1;
    text-align: center;
    padding: 0 40px;
}

.hero-title {
    font-family: var(--font-display);
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    opacity: 0;
}

.hero-title-1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.hero-title-2 {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--primary-gold);
}

.hero-description {
    max-width: 800px;
    text-align: center;
    opacity: 0;
}

.hero-description p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1024px) {
    .hero-label {
        display: none;
    }
    
    .hero-main {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        height: 100vh;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-container {
        margin-bottom: 40px;
    }
    
    .hero-title-1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 8px;
    }
    
    .hero-title-2 {
        font-size: clamp(2rem, 9vw, 3rem);
    }
    
    .hero-description p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Hide complex SVG on mobile for performance */
    .svg-glass,
    .svg-curve {
        display: none !important;
    }
    
    /* Simplify background on mobile */
    .hero-bg-image {
        will-change: auto;
    }
}

@media (max-width: 480px) {
    .hero-title-1 {
        font-size: 1.6rem;
    }
    
    .hero-title-2 {
        font-size: 1.9rem;
    }
    
    .hero-description p {
        font-size: 0.85rem;
    }
}

/* ==========================================
   Features Modern Section (Index Page)
   ========================================== */
.features-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1614 0%, #2a2420 50%, #1a1614 100%);
    position: relative;
    overflow: hidden;
}

.features-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d49653, transparent);
}

.features-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.features-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #d49653;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.features-header p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.feature-row:nth-child(even) {
    direction: rtl;
}

.feature-row:nth-child(even) > * {
    direction: ltr;
}

.feature-content {
    padding: 40px;
}

.feature-number-badge {
    display: inline-block;
    font-size: 1rem;
    color: #d49653;
    border: 2px solid #d49653;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.feature-content h3 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: #fff;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.feature-content p {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-weight: 300;
}

.feature-visual {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.feature-row:hover .feature-visual img {
    transform: scale(1.05);
}

.feature-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 150, 83, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-row:hover .feature-visual::after {
    opacity: 1;
}

/* Responsive */
@media (max-width: 968px) {
    .features-modern {
        padding: 60px 0;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }
    
    .feature-row:nth-child(even) {
        direction: ltr;
    }
    
    .feature-content {
        padding: 20px;
    }
    
    .feature-visual {
        height: 300px;
    }
}

/* ==========================================
   Latest Updates Section (Index Page)
   ========================================== */
.latest-updates {
    padding: 100px 0;
    background: linear-gradient(180deg, #292622 0%, #1a1614 100%);
    position: relative;
}

.updates-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.updates-header {
    text-align: center;
    margin-bottom: 80px;
}

.updates-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #d49653;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.updates-header p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.timeline-container {
    position: relative;
    padding-left: 80px;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #d49653 0%, rgba(212, 150, 83, 0.2) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-dot {
    position: absolute;
    left: -51px;
    top: 0;
    width: 20px;
    height: 20px;
    background: #d49653;
    border: 4px solid #1a1614;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(212, 150, 83, 0.2);
}

.timeline-card {
    background: linear-gradient(135deg, rgba(41, 38, 34, 0.6) 0%, rgba(26, 22, 20, 0.6) 100%);
    border: 1px solid rgba(212, 150, 83, 0.2);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.timeline-card:hover {
    border-color: rgba(212, 150, 83, 0.5);
    transform: translateX(10px);
    box-shadow: 0 20px 60px rgba(212, 150, 83, 0.15);
}

.update-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.update-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.update-date i {
    color: #d49653;
}

.update-category {
    padding: 6px 16px;
    background: rgba(212, 150, 83, 0.15);
    border: 1px solid rgba(212, 150, 83, 0.3);
    border-radius: 20px;
    color: #d49653;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.timeline-card h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: #fff;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 0.02em;
}

.timeline-card p {
    font-size: clamp(1rem, 1.3vw, 1.1rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 25px;
}

.update-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d49653;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
    letter-spacing: 0.03em;
}

.update-link:hover {
    gap: 15px;
    color: #e5a764;
}

.update-link i {
    transition: transform 0.3s;
}

.update-link:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .latest-updates {
        padding: 60px 0;
    }
    
    .timeline-container {
        padding-left: 40px;
    }
    
    .timeline-line {
        left: 10px;
    }
    
    .timeline-dot {
        left: 1px;
        width: 16px;
        height: 16px;
    }
    
    .timeline-card {
        padding: 25px;
    }
    
    .update-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ==========================================
   Wine Marquee Section (Index Page)
   ========================================== */
.wine-marquee-section {
    position: relative;
    background: linear-gradient(135deg, #1a1816 0%, #292622 100%);
    padding: 80px 0;
    overflow: hidden;
}

.marquee-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.marquee-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #d49653;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.marquee-header p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.marquee-track {
    display: flex;
    gap: 30px;
    will-change: transform;
    user-select: none;
}

.marquee-item {
    flex-shrink: 0;
    width: 350px;
    height: 450px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.marquee-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 150, 83, 0.3);
}

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

.marquee-item:hover img {
    transform: scale(1.1);
}

.marquee-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.marquee-item:hover .marquee-caption {
    transform: translateY(-5px);
    color: #d49653;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .wine-marquee-section {
        padding: 60px 0;
    }
    
    .marquee-header {
        margin-bottom: 40px;
    }
    
    .marquee-item {
        width: 280px;
        height: 380px;
    }
    
    .marquee-track {
        gap: 20px;
    }
    
    .marquee-caption {
        font-size: 1.1rem;
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .marquee-item {
        width: 240px;
        height: 320px;
    }
    
    .marquee-caption {
        font-size: 1rem;
    }
}

/* ==========================================
   CTA Section (Index Page)
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, #1a1614 0%, #2a2420 100%);
    padding: 80px 0;
}

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

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #d49653;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.cta-content p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Print Styles */
@media print {
    .main-header,
    .hamburger-menu,
    .back-to-top-btn,
    .quick-buttons {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* ==========================================
   Event Detail Page Styles (event-detail.php)
   ========================================== */
/* Event Detail Hero */
.event-detail-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #3d3530 100%);
}

.event-badge-large {
    display: inline-block;
    padding: 8px 24px;
    background: var(--primary-gold);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
}

/* Event Video in Detail Page */
.event-video {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.event-video video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* Event Detail Content */
.event-detail-content {
    padding: var(--spacing-xl) 0;
    background: var(--light-beige);
}

.event-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--spacing-xl);
    align-items: start;
}

/* Main Content */
.detail-main {
    background: white;
    border-radius: 12px;
    padding: var(--spacing-xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.detail-section {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.detail-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-section-title {
    font-size: 1.8rem;
    color: var(--dark-bg);
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-section-title i {
    color: var(--primary-gold);
}

.detail-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

/* Event Video */
.event-video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: var(--spacing-lg) 0;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.event-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Features List */
.detail-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 1.05rem;
    color: #555;
}

.detail-features-list li i {
    color: var(--primary-gold);
    margin-top: 4px;
    flex-shrink: 0;
}

/* Schedule */
.detail-schedule {
    display: grid;
    gap: 16px;
}

.schedule-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    padding: 16px;
    background: var(--light-beige);
    border-left: 3px solid var(--primary-gold);
    border-radius: 4px;
}

.schedule-time {
    font-weight: 600;
    color: var(--primary-gold);
}

.schedule-activity {
    color: #555;
}

/* Notes List */
.detail-notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-notes-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    color: #555;
}

.detail-notes-list li i {
    color: var(--primary-gold);
    font-size: 0.5rem;
    margin-top: 8px;
    flex-shrink: 0;
}

/* Sidebar */
.detail-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    border-radius: 12px;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-card-title {
    font-size: 1.4rem;
    color: var(--dark-bg);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-gold);
}

.sidebar-info-list {
    display: grid;
    gap: 16px;
}

.sidebar-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.sidebar-info-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.info-label {
    font-size: 0.85rem;
    color: #999;
    font-weight: 500;
}

.info-value {
    font-size: 1rem;
    color: var(--dark-bg);
    font-weight: 500;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, rgba(212, 150, 83, 0.1), rgba(212, 150, 83, 0.05));
    border: 2px solid var(--primary-gold);
}

.cta-card p {
    color: #666;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.btn-block {
    display: block;
    width: 100%;
    margin-bottom: 12px;
    text-align: center;
}

.btn-block:last-child {
    margin-bottom: 0;
}

/* Share Buttons */
.share-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.share-btn {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition-quick);
}

.share-btn.facebook { background: #1877f2; }
.share-btn.line { background: #06c755; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.copy { background: #666; }

.share-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Back to Events */
.back-to-events {
    margin-top: var(--spacing-xl);
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .event-detail-wrapper {
        grid-template-columns: 1fr;
    }
    
    .detail-sidebar {
        position: static;
    }
    
    .schedule-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .detail-main {
        padding: var(--spacing-lg);
    }
    
    .detail-section-title {
        font-size: 1.5rem;
    }
}

/* ==========================================
   Header Specific Styles
   ========================================== */
/* Preload Critical Styles */
body {
    opacity: 0;
    animation: fadeInBody 0.2s ease-in forwards;
}

@keyframes fadeInBody {
    to { opacity: 1; }
}

/* Skip to Main Content Link (Accessibility) */
.skip-to-main {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10000;
    padding: 12px 20px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 600;
}

.skip-to-main:focus {
    left: 10px;
    top: 10px;
    outline: 3px solid var(--primary-gold);
}

/* ==========================================
   Partners Premium Timeline Page Styles  
   ========================================== */

/* Reset Partners Page Specific Styles */
.partners-premium-page {
    background: var(--deep-bg);
}

/* ==========================================
   Partners Showcase Premium Section
   ========================================== */
.partners-showcase-premium {
    padding: 60px 0;
    background: var(--deep-bg);
    overflow: hidden;
}

.showcase-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    align-items: center;
}

/* Left Side: Content */
.showcase-content-side {
    position: relative;
    z-index: 2;
}

.showcase-text-wrapper {
    max-width: 550px;
}

.showcase-title {
    font-size: 3.5rem;
    font-family: var(--font-display);
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
}

.showcase-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

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

.stat-item-showcase {
    text-align: center;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(212, 150, 83, 0.1), rgba(191, 180, 163, 0.05));
    border: 1px solid rgba(212, 150, 83, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    opacity: 1;
    transform: none;
}

.stat-item-showcase:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 150, 83, 0.3);
}

.stat-number-large {
    font-size: 2.5rem;
    font-family: var(--font-display);
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 5px;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label-showcase {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* Right Side: Images Stack */
.showcase-visual-side {
    position: relative;
    height: 500px;
}

.showcase-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.showcase-img-main,
.showcase-img-secondary,
.showcase-img-accent {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.showcase-img-main {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 0;
    z-index: 3;
}

.showcase-img-secondary {
    width: 55%;
    height: 55%;
    top: 0;
    right: 0;
    z-index: 2;
}

.showcase-img-accent {
    width: 45%;
    height: 45%;
    bottom: 0;
    right: 10%;
    z-index: 1;
}

.showcase-image-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================
   Partners Cards Section
   ========================================== */
.partners-cards-section {
    padding: 80px 0;
    background: var(--deep-bg);
}

.partners-cards-section .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.partners-cards-section .section-intro h2 {
    font-size: 2.5rem;
    font-family: var(--font-display);
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-weight: 300;
    opacity: 1;
}

.partners-cards-section .section-intro p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    opacity: 1;
}

/* Partners Cards Grid */
.partners-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Partner Card */
.partner-card {
    background: linear-gradient(135deg, 
        rgba(212, 150, 83, 0.05) 0%, 
        rgba(41, 38, 34, 0.8) 100%);
    border: 1px solid rgba(212, 150, 83, 0.2);
    border-radius: 20px;
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: none;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 150, 83, 0.1), transparent);
    transition: left 0.6s ease;
}

.partner-card:hover::before {
    left: 100%;
}

.partner-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 150, 83, 0.3);
}

/* Partner Card Logo */
.partner-card-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    border-radius: 16px;
    overflow: hidden;
    border: 5px solid var(--primary-gold);
    box-shadow: 
        0 8px 20px rgba(212, 150, 83, 0.3),
        0 0 0 1px rgba(212, 150, 83, 0.1),
        inset 0 1px 3px rgba(255, 255, 255, 0.3);
    transition: transform 0.4s ease;
    opacity: 1;
    transform: none;
}

.partner-card:hover .partner-card-logo {
    transform: scale(1.1) rotate(5deg);
}

.partner-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #f5eee4;
    padding: 0;
    opacity: 1;
}

/* Partner Card Region Badge */
.partner-card-region {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), #c28543);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    opacity: 1;
}

/* Partner Card Name */
.partner-card-name {
    font-size: 1.3rem;
    font-family: var(--font-display);
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
    opacity: 1;
}

/* Partner Card Link */
.partner-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    transition: all 0.3s ease;
    opacity: 1;
}

.partner-card-link:hover {
    color: var(--text-light);
}

.partner-card-link i {
    font-size: 1rem;
}

/* Partner Card Address */
.partner-card-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
    padding: 10px;
    background: rgba(212, 150, 83, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(212, 150, 83, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
}

.partner-card-address:hover {
    color: var(--primary-gold);
    background: rgba(212, 150, 83, 0.1);
    border-color: var(--primary-gold);
    transform: translateX(3px);
}

.partner-card-address i {
    font-size: 1rem;
    color: var(--primary-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.partner-card-address span {
    flex: 1;
}

/* Partner Card Offer */
.partner-card-offer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, 
        rgba(212, 150, 83, 0.2) 0%, 
        rgba(191, 180, 163, 0.1) 100%);
    border: 1px solid rgba(212, 150, 83, 0.3);
    border-radius: 12px;
    opacity: 1;
    padding: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.partner-card-offer i {
    color: var(--primary-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

/* Partners Page Responsive Design */
@media (max-width: 1024px) {
    .partners-cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .partners-cards-section .section-intro h2 {
        font-size: 2rem;
    }
    
    .showcase-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .showcase-title {
        font-size: 2.5rem;
    }
    
    .showcase-visual-side {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .partners-showcase-premium {
        padding: 40px 0;
    }
    
    .showcase-split-layout {
        padding: 0 var(--spacing-md);
        gap: 40px;
    }
    
    .showcase-title {
        font-size: 2rem;
    }
    
    .showcase-description {
        font-size: 1rem;
    }
    
    .showcase-stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .stat-number-large {
        font-size: 2rem;
    }
    
    .showcase-visual-side {
        height: 400px;
    }
    
    .showcase-img-main {
        width: 80%;
        height: 60%;
    }
    
    .showcase-img-secondary {
        width: 65%;
        height: 50%;
    }
    
    .showcase-img-accent {
        width: 55%;
        height: 40%;
    }
    
    .partners-cards-section {
        padding: 60px 0;
    }
    
    .partners-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partner-card-logo {
        width: 90px;
        height: 90px;
    }
    
    .partner-card-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .partners-cards-section .section-intro h2 {
        font-size: 1.8rem;
    }
    
    .partner-card {
        padding: var(--spacing-md);
    }
}

/* ================================
   Founder Story Split Section
    ================================ */
.founder-story-split {
    background: linear-gradient(135deg, #292622 0%, #3a342e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content-side {
    position: relative;
    z-index: 2;
}

.founder-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 24px;
    font-weight: 500;
}

.story-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
}

.founder-identity {
    margin-bottom: 40px;
    padding: 30px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.founder-name-large {
    font-size: 2.5rem;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 4px;
}

.founder-title {
    font-size: 1.1rem;
    color: rgba(216, 203, 184, 0.8);
    margin-bottom: 8px;
}

.founder-year {
    font-size: 0.9rem;
    color: rgba(216, 203, 184, 0.5);
    letter-spacing: 2px;
}

.story-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(216, 203, 184, 0.9);
    margin-bottom: 20px;
}

.story-intro strong {
    color: var(--primary-gold);
    font-weight: 600;
}

.belief-text {
    font-size: 1.3rem !important;
    color: var(--primary-gold) !important;
    font-style: italic;
    line-height: 1.6 !important;
    margin-top: 30px !important;
    padding-left: 20px;
    border-left: 3px solid var(--primary-gold);
}

.story-visual-side {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-photo-frame {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-gold);
    box-shadow: 
        0 0 0 15px rgba(212, 175, 55, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.founder-photo-frame:hover {
    transform: scale(1.05);
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.founder-photo-frame:hover .founder-photo {
    transform: scale(1.1);
}

.photo-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.photo-border-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--primary-gold);
}

.corner-tl {
    top: -3px;
    left: -3px;
    border-right: none;
    border-bottom: none;
    border-radius: 50% 0 0 0;
}

.corner-tr {
    top: -3px;
    right: -3px;
    border-left: none;
    border-bottom: none;
    border-radius: 0 50% 0 0;
}

.corner-bl {
    bottom: -3px;
    left: -3px;
    border-right: none;
    border-top: none;
    border-radius: 0 0 0 50%;
}

.corner-br {
    bottom: -3px;
    right: -3px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 50% 0;
}

/* Glowing effect animation */
@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 
            0 0 0 15px rgba(212, 175, 55, 0.1),
            0 20px 60px rgba(0, 0, 0, 0.5),
            0 0 40px rgba(212, 175, 55, 0.3),
            inset 0 0 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 
            0 0 0 15px rgba(212, 175, 55, 0.15),
            0 20px 60px rgba(0, 0, 0, 0.5),
            0 0 60px rgba(212, 175, 55, 0.5),
            inset 0 0 30px rgba(0, 0, 0, 0.3);
    }
}

.founder-photo-frame {
    animation: glow-pulse 4s ease-in-out infinite;
}

/* ================================
   Philosophy Section
   ================================ */
.philosophy-section {
    background: #ebe3d5;
    padding: 80px 0;
}

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

.philosophy-text {
    font-size: 1.15rem;
    line-height: 2;
    color: #555;
    margin-bottom: 24px;
}

/* ================================
   Core Values Section
   ================================ */
.core-values-section {
    background: linear-gradient(180deg, #ebe3d5 0%, #e5ddd0 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

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

.value-block {
    position: relative;
    padding: 80px 0;
    margin-bottom: 60px;
}

.value-block:last-child {
    margin-bottom: 0;
}

.value-number {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.08);
    line-height: 1;
    font-family: 'Georgia', serif;
    pointer-events: none;
    z-index: 0;
}

.value-decoration-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    position: absolute;
    left: 0;
    right: 0;
}

.line-top {
    top: 0;
    background: linear-gradient(90deg, transparent, var(--primary-gold) 30%, transparent);
}

.line-bottom {
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3) 70%, transparent);
}

.value-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
    overflow: hidden;
}

.heading-line {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--primary-gold);
    line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #d4af37 50%, var(--primary-gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.value-text p {
    font-size: 1.15rem;
    line-height: 2;
    color: #555;
    margin-bottom: 24px;
    opacity: 0.9;
}

.value-text p:last-child {
    margin-bottom: 0;
}

/* Alternating layout for visual interest */
.value-2 .value-number {
    left: 0;
    right: auto;
}

.value-2 .value-heading {
    text-align: right;
}

.value-2 .value-text {
    margin-left: auto;
}

/* Parallax decorative elements */
.value-block::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    pointer-events: none;
    z-index: 0;
}

.value-1::before {
    top: -50px;
    left: -100px;
}

.value-2::before {
    top: -50px;
    right: -100px;
}

.value-3::before {
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
}

/* ================================
   Quote Section
   ================================ */
.quote-section {
    background: var(--dark-bg);
    padding: 80px 0;
    position: relative;
}

.quote-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.3);
    margin-bottom: 30px;
}

.founder-quote-large {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary-gold);
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 30px 0;
    font-weight: 300;
    letter-spacing: 1px;
}

.quote-author {
    font-size: 1.2rem;
    color: rgba(216, 203, 184, 0.7);
    font-style: italic;
}

/* ================================
   CTA Modern Section
   ================================ */
.about-cta-modern {
    background: linear-gradient(135deg, #1a1816 0%, #292622 100%);
    padding: 100px 0;
    position: relative;
}

.cta-content-modern {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.stat-number-cta {
    font-size: 3rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Georgia', serif;
}

.stat-label-cta {
    font-size: 1rem;
    color: rgba(216, 203, 184, 0.7);
    letter-spacing: 1px;
}

.cta-title-modern {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 1px;
}

.cta-desc-modern {
    font-size: 1.15rem;
    color: rgba(216, 203, 184, 0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-buttons-modern {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-gold), #d4af37);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #d4af37, var(--primary-gold));
}

.btn-cta-primary i {
    font-size: 1.3rem;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1024px) {
    .story-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .story-visual-side {
        height: 400px;
    }
    
    .founder-photo-frame {
        width: 350px;
        height: 350px;
    }
    
    .value-number {
        font-size: 8rem;
    }
    
    .value-2 .value-heading {
        text-align: left;
    }
    
    .value-2 .value-text {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .founder-story-split {
        padding: 60px 0;
    }
    
    .story-title {
        font-size: 2rem;
    }
    
    .founder-name-large {
        font-size: 2rem;
    }
    
    .belief-text {
        font-size: 1.1rem !important;
    }
    
    .story-visual-side {
        height: 350px;
    }
    
    .founder-photo-frame {
        width: 300px;
        height: 300px;
    }
    
    .photo-border-corner {
        width: 40px;
        height: 40px;
        border-width: 2px;
    }
    
    .philosophy-section {
        padding: 60px 0;
    }
    
    .philosophy-text {
        font-size: 1rem;
    }
    
    .core-values-section {
        padding: 80px 0;
    }
    
    .value-block {
        padding: 60px 0;
        margin-bottom: 40px;
    }
    
    .value-number {
        font-size: 6rem;
        opacity: 0.5;
    }
    
    .heading-line {
        font-size: 2rem;
    }
    
    .value-text p {
        font-size: 1rem;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
    
    .stat-number-cta {
        font-size: 2.5rem;
    }
    
    .about-cta-modern {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .story-title {
        font-size: 1.8rem;
    }
    
    .founder-name-large {
        font-size: 1.6rem;
    }
    
    .value-block {
        padding: 40px 0;
    }
    
    .value-number {
        font-size: 4rem;
    }
    
    .heading-line {
        font-size: 1.6rem;
    }
    
    .value-text p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .founder-quote-large {
        font-size: 1.5rem;
    }
    
    .cta-buttons-modern {
        flex-direction: column;
    }
    
    .btn-cta-primary {
        width: 100%;
        justify-content: center;
    }
}

/* ================================
   Contact Main Split Section
    ================================ */
.contact-main-split {
    background: linear-gradient(135deg, #292622 0%, #3a342e 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-visual-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qr-frame {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-decoration-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    animation: ring-pulse 3s ease-in-out infinite;
}

.ring-1 {
    width: 400px;
    height: 400px;
    opacity: 0.3;
}

.ring-2 {
    width: 340px;
    height: 340px;
    opacity: 0.5;
    animation-delay: 0.5s;
}

.ring-3 {
    width: 280px;
    height: 280px;
    opacity: 0.7;
    animation-delay: 1s;
}

@keyframes ring-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: inherit;
    }
    50% {
        transform: scale(1.05);
        opacity: calc(inherit * 0.7);
    }
}

.qr-image-wrapper {
    position: relative;
    z-index: 2;
    width: 250px;
    height: 250px;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 
        0 0 0 10px rgba(212, 175, 55, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.5);
}

.qr-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-scan-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    animation: scan 2s ease-in-out infinite;
    z-index: 3;
}

@keyframes scan {
    0%, 100% {
        top: 30%;
        opacity: 0;
    }
    50% {
        top: 70%;
        opacity: 1;
    }
}

.qr-instruction {
    margin-top: 30px;
    font-size: 1.1rem;
    color: var(--primary-gold);
    text-align: center;
    letter-spacing: 1px;
}

.contact-content-side {
    position: relative;
    z-index: 2;
}

.contact-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 24px;
    font-weight: 500;
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
    line-height: 1.3;
}

.contact-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), #d4af37);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.feature-text h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.feature-text p {
    color: rgba(216, 203, 184, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

.contact-action-primary {
    margin-bottom: 40px;
}

.link-contact {
    display: inline-block;
    font-size: 1.3rem;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.link-contact::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), #d4af37);
    transition: width 0.4s ease;
}

.link-contact:hover {
    color: #d4af37;
    letter-spacing: 2px;
}

.link-contact:hover::after {
    width: 100%;
}

.contact-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.stat-value {
    font-size: 2rem;
    color: var(--primary-gold);
    font-weight: 700;
    font-family: 'Georgia', serif;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(216, 203, 184, 0.7);
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(212, 175, 55, 0.2);
}

/* ================================
   Why Join Section
   ================================ */
.why-join-section {
    background: linear-gradient(180deg, #ebe3d5 0%, #e5ddd0 100%);
    padding: 100px 0;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-modern {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark-bg);
    margin-bottom: 16px;
    font-weight: 300;
    letter-spacing: 2px;
}

.section-desc-modern {
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.reason-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.reason-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), #d4af37);
}

.reason-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
}

.reason-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.1);
    line-height: 1;
    margin-bottom: 20px;
    font-family: 'Georgia', serif;
}

.reason-title {
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin-bottom: 16px;
    font-weight: 600;
}

.reason-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 1024px) {
    .contact-split-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .qr-frame {
        width: 350px;
        height: 350px;
    }
    
    .ring-1 {
        width: 350px;
        height: 350px;
    }
    
    .ring-2 {
        width: 300px;
        height: 300px;
    }
    
    .ring-3 {
        width: 250px;
        height: 250px;
    }
    
    .qr-image-wrapper {
        width: 220px;
        height: 220px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-main-split {
        padding: 60px 0;
    }
    
    .qr-frame {
        width: 300px;
        height: 300px;
    }
    
    .ring-1 {
        width: 300px;
        height: 300px;
    }
    
    .ring-2 {
        width: 260px;
        height: 260px;
    }
    
    .ring-3 {
        width: 220px;
        height: 220px;
    }
    
    .qr-image-wrapper {
        width: 200px;
        height: 200px;
        padding: 15px;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .link-contact {
        font-size: 1.1rem;
    }
    
    .contact-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
    }
    
    .why-join-section {
        padding: 60px 0;
    }
    
    .reason-card {
        padding: 30px;
    }
    
    .reason-number {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .qr-frame {
        width: 280px;
        height: 280px;
    }
    
    .ring-1 {
        width: 280px;
        height: 280px;
    }
    
    .ring-2 {
        width: 240px;
        height: 240px;
    }
    
    .ring-3 {
        width: 200px;
        height: 200px;
    }
    
    .qr-image-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .reason-card {
        padding: 24px;
    }
    
    .reason-number {
        font-size: 2.5rem;
    }
    
    .reason-title {
        font-size: 1.3rem;
    }
}

/* ==========================================
   Products Page Modern Redesign
    ========================================== */

/* Intro Section */
.products-intro-section {
    padding: 60px 0;
    background: var(--deep-bg);
    text-align: center;
}

.intro-content-centered {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content-centered h2 {
    font-size: 2.5rem;
    font-family: var(--font-display);
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-weight: 300;
}

.intro-content-centered p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Product Showcase Split Layout */
.product-showcase-split {
    padding: 80px 0;
    background: var(--deep-bg);
}

.product-showcase-split.reverse {
    background: linear-gradient(180deg, var(--deep-bg) 0%, #1a1816 100%);
}

.split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    align-items: center;
}

.product-showcase-split.reverse .split-container {
    direction: rtl;
}

.product-showcase-split.reverse .split-content-side {
    direction: ltr;
}

/* Image Side */
.split-image-side {
    position: relative;
}

.product-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.product-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.product-image-frame:hover img {
    transform: scale(1.05);
}

.image-badge-corner {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-gold), #c28543);
    padding: 8px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(212, 150, 83, 0.4);
}

.image-badge-corner .badge-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.image-badge-hot {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(212, 150, 83, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(212, 150, 83, 0.4);
}

.image-badge-hot i {
    color: #ff6b35;
    font-size: 1rem;
}

.image-badge-hot span {
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Content Side */
.split-content-side {
    padding: var(--spacing-lg);
}

.product-detail-wrapper {
    max-width: 550px;
}

.product-category {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.product-title {
    font-size: 3rem;
    font-family: var(--font-display);
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    font-weight: 300;
}

.product-title .subtitle {
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.product-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
}

/* Features Modern */
.product-features-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: var(--spacing-lg);
}

.feature-item-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(212, 150, 83, 0.1), rgba(191, 180, 163, 0.05));
    border: 1px solid rgba(212, 150, 83, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.feature-item-modern:hover {
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.feature-item-modern i {
    color: var(--primary-gold);
    font-size: 1rem;
}

.feature-item-modern span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Specs Modern */
.product-specs-modern {
    background: rgba(41, 38, 34, 0.5);
    border: 1px solid rgba(212, 150, 83, 0.15);
    border-radius: 12px;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 150, 83, 0.1);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label-modern {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.spec-value-modern {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
}

/* CTA Modern */
.product-cta-modern {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-modern-primary,
.btn-modern-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-modern-primary {
    background: linear-gradient(135deg, var(--primary-gold), #c28543);
    color: white;
    box-shadow: 0 8px 20px rgba(212, 150, 83, 0.3);
}

.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 150, 83, 0.5);
}

.btn-modern-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(212, 150, 83, 0.3);
}

.btn-modern-secondary:hover {
    border-color: var(--primary-gold);
    background: rgba(212, 150, 83, 0.1);
}

/* How to Get Section */
.how-to-get-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1816 0%, var(--deep-bg) 100%);
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

.section-header-centered h2 {
    font-size: 2.8rem;
    font-family: var(--font-display);
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    font-weight: 300;
}

.section-header-centered p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto var(--spacing-xl);
}

.step-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(41, 38, 34, 0.5);
    border: 1px solid rgba(212, 150, 83, 0.15);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(212, 150, 83, 0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    background: var(--deep-bg);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-gold);
}

.step-icon {
    margin: 30px auto 20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 150, 83, 0.2), rgba(191, 180, 163, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, rgba(212, 150, 83, 0.3), rgba(191, 180, 163, 0.15));
    transform: scale(1.1);
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-gold);
}

.step-card h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

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

.cta-centered {
    text-align: center;
}

.btn-large-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--primary-gold), #c28543);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(212, 150, 83, 0.4);
    transition: all 0.4s ease;
}

.btn-large-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 150, 83, 0.6);
}

.btn-large-primary i {
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .split-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .product-showcase-split.reverse .split-container {
        direction: ltr;
    }
    
    .product-title {
        font-size: 2.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .products-intro-section {
        padding: 40px 0;
    }
    
    .intro-content-centered h2 {
        font-size: 2rem;
    }
    
    .intro-content-centered p {
        font-size: 1rem;
    }
    
    .product-showcase-split {
        padding: 50px 0;
    }
    
    .split-container {
        padding: 0 var(--spacing-md);
        gap: 30px;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-title .subtitle {
        font-size: 1.3rem;
    }
    
    .product-intro {
        font-size: 1rem;
    }
    
    .product-cta-modern {
        flex-direction: column;
    }
    
    .btn-modern-primary,
    .btn-modern-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .how-to-get-section {
        padding: 60px 0;
    }
    
    .section-header-centered h2 {
        font-size: 2rem;
    }
    
    .btn-large-primary {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .intro-content-centered h2 {
        font-size: 1.8rem;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .feature-item-modern {
        width: 100%;
        justify-content: center;
    }
    
    .section-header-centered h2 {
        font-size: 1.8rem;
    }
}
