:root {
    --pink-primary: #FF1493;
    --pink-light: #FF69B4;
    --pink-dark: #C71585;
    --pink-gradient: linear-gradient(135deg, #FF1493, #FF69B4, #FFB6C1);
    --pink-gradient-alt: linear-gradient(135deg, #C71585, #FF1493, #FF69B4);
    --black: #0A0A0A;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --gray-mid: #888888;
}

/* Light Mode Variables */
[data-theme="light"] {
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FA;
    --bg-tertiary: #F0F0F0;
    --text-primary: #2D2D2D;
    --text-secondary: #6B7280;
    --text-light: #9CA3AF;
    --border-color: rgba(255, 20, 147, 0.2);
    --card-bg: rgba(255, 20, 147, 0.03);
    --card-border: rgba(255, 20, 147, 0.1);
    --navbar-bg: rgba(255, 255, 255, 0.95);
    --orb-opacity: 0.1;
}

/* Dark Mode Variables (default) */
[data-theme="dark"] {
    --bg-primary: #0A0A0A;
    --bg-secondary: #0F0F0F;
    --bg-tertiary: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #F5F5F5;
    --text-light: #888888;
    --border-color: rgba(255, 20, 147, 0.2);
    --card-bg: rgba(255, 20, 147, 0.1);
    --card-border: rgba(255, 20, 147, 0.2);
    --navbar-bg: rgba(10, 10, 10, 0.95);
    --orb-opacity: 1;
}

/* Global Transition for Theme Switching */
*, 
*::before, 
*::after {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease !important;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    transition: all 0.3s ease;
}

/* Custom Cursor - Disabled */
/*
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--pink-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    background: var(--pink-primary);
    opacity: 0.3;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease;
}
*/

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background: var(--navbar-bg);
    padding: 15px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.logo-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gray-mid);
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--pink-light);
}

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

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

.nav-cta {
    background: var(--pink-gradient);
    padding: 10px 25px;
    border-radius: 50px;
    color: var(--white) !important;
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

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

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

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 20s infinite ease-in-out;
    opacity: var(--orb-opacity);
    transition: opacity 0.3s ease;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--pink-gradient);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--pink-gradient-alt);
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #FF1493, #C71585);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-50px, 50px) scale(0.9); }
    75% { transform: translate(-30px, -30px) scale(1.05); }
}

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

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

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(60px, 10vw, 120px);
    line-height: 0.9;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.line-1 {
    animation: slideInLeft 1s ease;
}

.line-2 {
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInRight 1s ease 0.2s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--pink-light);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease 0.6s both;
}

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

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.8s both;
}

/* Button Styles */


.btn {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--pink-gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--pink-primary);
}

.btn-secondary:hover {
    background: var(--pink-primary);
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--pink-primary), transparent);
    animation: scrollLine 2s infinite;
}

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

@keyframes scrollLine {
    0% { height: 0; }
    50% { height: 40px; }
    100% { height: 0; }
}

/* Section Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

section {
    padding: 100px 0;
}

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

.section-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pink-primary);
    margin-bottom: 15px;
    position: relative;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: var(--pink-primary);
}

.section-tag::before {
    right: calc(100% + 20px);
}

.section-tag::after {
    left: calc(100% + 20px);
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(40px, 5vw, 60px);
    letter-spacing: 2px;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--pink-primary);
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.2);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Categories Section */
.categories {
    background: var(--bg-primary);
    overflow: hidden;
}

.categories-scroll-container {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.categories-scroll {
    display: flex;
    gap: 30px;
    width: fit-content;
}

.categories-scroll.infinite-scroll {
    animation: infiniteScroll 30s linear infinite;
}

.categories-scroll:hover {
    animation-play-state: paused;
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.category-card {
    min-width: 300px;
    height: 400px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
}

.category-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--pink-gradient);
    opacity: 0.15;
    border-radius: 10px;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-image::before {
    opacity: 0.05;
}

.category-card h3 {
    font-size: 20px;
    font-weight: 600;
}

.category-card:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.3), rgba(255, 20, 147, 0.1));
}

/* Why Us Section */
.why-us {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.features-list {
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; }

.feature-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 60px;
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    min-width: 80px;
}

.feature-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    background: var(--bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 40px;
    position: relative;
}

.quote-mark {
    font-size: 80px;
    font-family: Georgia, serif;
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.testimonial-author strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* InvestFest Section */
/* InvestFest Section - Enhanced */
.investfest {
    background: linear-gradient(135deg, 
        rgba(255, 20, 147, 0.1) 0%, 
        rgba(139, 0, 139, 0.1) 50%,
        rgba(255, 215, 0, 0.1) 100%);
    padding: 100px 0;
    margin: 100px 0;
    position: relative;
    overflow: hidden;
}

.investfest::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.investfest-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 20px;
}

/* Live Event Badge */
.live-event-badge {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF1493, #FFD700);
    color: white;
    padding: 6px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 3;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* Header */
.investfest-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.glowing-tag {
    background: linear-gradient(135deg, #FF1493, #8B008B);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: glow 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 20, 147, 0.5); }
    50% { box-shadow: 0 0 40px rgba(255, 20, 147, 0.8); }
}

.event-date {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Title Styling */
.investfest-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.1;
    margin: 30px 0;
    text-align: center;
}

.investfest-title span {
    display: block;
}

.title-line-1 {
    font-size: 0.7em;
    color: var(--text-secondary);
}

.title-line-2 {
    margin: 10px 0;
}

.highlight-china {
    background: linear-gradient(90deg, #FF1493, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2em;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.5); }
}

.fire-text {
    color: #FF4500;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
    animation: fire 1.5s ease-in-out infinite;
}

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

/* Speaker Badge */
.speaker-intro {
    margin: 40px 0;
}

.speaker-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.speaker-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.speaker-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.speaker-info strong {
    font-size: 16px;
    color: var(--text-primary);
}

.speaker-info span {
    font-size: 14px;
    color: var(--text-muted);
}

.event-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.savings-highlight {
    background: linear-gradient(90deg, #FFD700, #FF1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

/* Topics Grid */
.investfest-topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 50px 0;
}

.topic-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.topic-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.2);
}

.topic-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.topic-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.topic-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.topic-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* CTA Section */
.investfest-cta {
    margin-top: 50px;
    text-align: center;
}

.btn-pulse {
    background: linear-gradient(135deg, #FF1493, #8B008B);
    color: white;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

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

.btn-pulse:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 20, 147, 0.5);
}

.arrow-icon {
    width: 24px;
    height: 24px;
    animation: slideRight 1s ease-in-out infinite;
}

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

/* Attendee Avatars */
.attendee-avatars {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.avatar-stack {
    display: flex;
}

.avatar-stack img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
    margin-left: -15px;
}

.avatar-stack img:first-child {
    margin-left: 0;
}

.attendee-count {
    font-size: 14px;
    color: var(--text-muted);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.float-element {
    position: absolute;
    font-size: 30px;
    opacity: 0.2;
    animation: float 20s infinite;
}

.element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 20%;
    right: 15%;
    animation-delay: 5s;
}

.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.element-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(0) rotate(180deg);
    }
    75% {
        transform: translateY(20px) rotate(270deg);
    }
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 120px 0;
}

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

.contact-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(40px, 5vw, 60px);
    margin-bottom: 20px;
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-link {
    color: var(--pink-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link:hover {
    color: var(--pink-primary);
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--pink-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-link:hover::after {
    transform: scaleX(1);
}

/* Footer */
.footer {
    background: var(--bg-primary);
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 10px;
}

.footer-logo .logo-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo .logo-sub {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gray-mid);
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0;
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

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

.social-icon {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--pink-primary);
    transform: scale(1.1);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.footer-credit {
    color: var(--pink-primary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.footer-credit:hover {
    opacity: 0.8;
}

/* Theme Toggle Styles */
.theme-toggle {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.theme-switch {
    display: none;
}

.theme-label {
    width: 60px;
    height: 30px;
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    transition: all 0.3s ease;
}

.theme-label:hover {
    border-color: var(--pink-primary);
}

.theme-label::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: var(--pink-gradient);
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 20, 147, 0.3);
}

.theme-switch:checked + .theme-label::before {
    transform: translateX(28px);
}

.theme-icon {
    font-size: 14px;
    z-index: 1;
    transition: all 0.3s ease;
}

.theme-dark {
    opacity: 1;
}

.theme-light {
    opacity: 0.5;
}

.theme-switch:checked + .theme-label .theme-dark {
    opacity: 0.5;
}

.theme-switch:checked + .theme-label .theme-light {
    opacity: 1;
}

/* Light Mode Specific Overrides */
[data-theme="light"] .gradient-orb {
    opacity: 0.05;
}

[data-theme="light"] .particles-container {
    opacity: 0.6;
}

[data-theme="light"] .sparkle::before {
    background: radial-gradient(circle, rgba(255, 105, 180, 0.4) 0%, transparent 70%);
}

[data-theme="light"] .sparkle::after {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
}


[data-theme="light"] .orb-1 {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.03), rgba(255, 105, 180, 0.02), rgba(255, 182, 193, 0.01));
}

[data-theme="light"] .orb-2 {
    background: linear-gradient(135deg, rgba(199, 21, 133, 0.02), rgba(255, 20, 147, 0.03), rgba(255, 105, 180, 0.01));
}

[data-theme="light"] .orb-3 {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.02), rgba(199, 21, 133, 0.015));
}

[data-theme="light"] .menu-toggle span {
    background: var(--text-primary);
}

[data-theme="light"] .category-card:hover {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.08), rgba(255, 20, 147, 0.03));
}

/* Cursor styles for light mode */
[data-theme="light"] .cursor {
    border-color: var(--pink-primary);
}

[data-theme="light"] .cursor-follower {
    background: var(--pink-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: clamp(40px, 8vw, 60px);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
        margin: 0 auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .theme-toggle {
        order: -1;
        margin: 0 0 20px 0;
    }
}

/* Scroll Animation Keyframes */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* Section Animation Base States */
.section-animate {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-animate.animate-left {
    transform: translateX(-100px);
}

.section-animate.animate-right {
    transform: translateX(100px);
}

.section-animate.animate-up {
    transform: translateY(60px);
}

.section-animate.animate-down {
    transform: translateY(-60px);
}

.section-animate.animate-scale {
    transform: scale(0.8);
}

.section-animate.animate-rotate {
    transform: rotate(-10deg) scale(0.9);
}

/* Visible state */
.section-animate.visible {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1) rotate(0deg);
}

/* Stagger animations for child elements */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-children.visible > *:nth-child(1) { 
    transition-delay: 0.1s; 
    opacity: 1; 
    transform: translateY(0); 
}
.stagger-children.visible > *:nth-child(2) { 
    transition-delay: 0.2s; 
    opacity: 1; 
    transform: translateY(0); 
}
.stagger-children.visible > *:nth-child(3) { 
    transition-delay: 0.3s; 
    opacity: 1; 
    transform: translateY(0); 
}
.stagger-children.visible > *:nth-child(4) { 
    transition-delay: 0.4s; 
    opacity: 1; 
    transform: translateY(0); 
}
.stagger-children.visible > *:nth-child(5) { 
    transition-delay: 0.5s; 
    opacity: 1; 
    transform: translateY(0); 
}
.stagger-children.visible > *:nth-child(6) { 
    transition-delay: 0.6s; 
    opacity: 1; 
    transform: translateY(0); 
}
.stagger-children.visible > *:nth-child(7) { 
    transition-delay: 0.7s; 
    opacity: 1; 
    transform: translateY(0); 
}

/* Particle System */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

#particles-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Sparkle Particles */
.sparkle {
    position: absolute;
    pointer-events: none;
    z-index: 15;
    width: 6px;
    height: 6px;
}

.sparkle::before,
.sparkle::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: sparkleFloat 8s infinite ease-in-out;
}

.sparkle::after {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.6) 0%, transparent 70%);
    animation-delay: 2s;
    animation-duration: 12s;
}

.sparkle.gold::before {
    background: radial-gradient(circle, rgba(255, 215, 0, 0.7) 0%, transparent 70%);
    width: 3px;
    height: 3px;
}

.sparkle.pink::before {
    background: radial-gradient(circle, rgba(255, 105, 180, 0.6) 0%, transparent 70%);
    width: 2px;
    height: 2px;
}

/* Sparkle Animation */
@keyframes sparkleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0px) scale(0.5);
    }
    10% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-400px) scale(0.8);
    }
    100% {
        opacity: 0;
        transform: translateY(-420px) scale(0.3);
    }
}

@keyframes sparkleRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sparkleGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 20, 147, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 20, 147, 0.8), 0 0 30px rgba(255, 215, 0, 0.4);
    }
}

/* Floating Sparkle Variants */
.sparkle-1 {
    animation: sparkleFloat 6s infinite ease-in-out, sparkleRotate 4s infinite linear;
}

.sparkle-2 {
    animation: sparkleFloat 8s infinite ease-in-out, sparkleGlow 3s infinite ease-in-out;
    animation-delay: 2s;
}

.sparkle-3 {
    animation: sparkleFloat 10s infinite ease-in-out, sparkleRotate 6s infinite reverse;
    animation-delay: 4s;
}

.sparkle-4 {
    animation: sparkleFloat 12s infinite ease-in-out, sparkleGlow 2s infinite ease-in-out;
    animation-delay: 6s;
}

/* AI Showcase Section */
.ai-showcase {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 120px 0;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.ai-slider-container {
    max-width: 900px;
    margin: 60px auto 0;
}

/* AI Interactive Demo */
.ai-demos-container {
    max-width: 1200px;
    margin: 60px auto 0;
}

.ai-interactive-demo h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.demo-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.demo-interface {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.image-upload-area {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--card-bg);
    border: 2px dashed var(--card-border);
}

.image-upload-area img {
    width: 100%;
    height: auto;
    display: block;
}

.upload-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.image-upload-area:hover .upload-overlay {
    opacity: 1;
}

.upload-hint {
    color: white;
    margin-top: 10px;
    font-size: 14px;
}

.transformation-controls {
    margin-top: 20px;
}

.transformation-controls label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
}

.prompt-textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--card-border);
    background: var(--bg-primary);
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 16px;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
}

.style-presets {
    margin-bottom: 20px;
}

.style-presets label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
}

.preset-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.preset-btn {
    padding: 8px 16px;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preset-btn:hover {
    background: var(--pink-primary);
    color: white;
    border-color: var(--pink-primary);
}

.result-placeholder {
    width: 100%;
    min-height: 400px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-content {
    text-align: center;
    padding: 40px;
}

.placeholder-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
}

.placeholder-hint {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 10px;
}

.loading-animation {
    text-align: center;
}

.loading-animation .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--card-border);
    border-top: 4px solid var(--pink-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

/* Examples Gallery */
.examples-gallery {
    margin-top: 60px;
}

.examples-gallery h4 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 20px;
    color: var(--text-primary);
}

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

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
}

.ai-cta {
    text-align: center;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--card-border);
}

.ai-cta p {
    font-size: 18px;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--bg-primary);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid var(--card-border);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 0 30px;
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 0;
}

.modal-header h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 24px;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--card-border);
    color: var(--text-primary);
}

.modal-description {
    padding: 30px 30px 0 30px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.modal-description ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.modal-description li {
    padding: 8px 0;
    font-size: 16px;
}

.modal-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink-primary);
    box-shadow: 0 0 0 3px rgba(255, 20, 147, 0.1);
}

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

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-weight: normal !important;
    cursor: pointer;
    margin-bottom: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
    accent-color: var(--pink-primary);
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .modal-header,
    .modal-description,
    .modal-form {
        padding: 20px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.2);
    background: var(--card-bg);
    border: 2px solid var(--card-border);
}

.slider-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.before-image {
    z-index: 1;
}

.after-image {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.3s ease;
}

.image-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 20, 147, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.after-image .image-label {
    background: rgba(255, 215, 0, 0.9);
    color: var(--black);
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: var(--pink-gradient);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: grab;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
    transition: all 0.3s ease;
}

.slider-handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 20, 147, 0.6);
}

.slider-handle:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(0.95);
}

.handle-icon {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--pink-gradient);
    transform: translateX(-50%);
    z-index: 9;
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

.ai-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.upload-section {
    margin-bottom: 10px;
}

.tech-stack {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.tech-item {
    background: var(--pink-gradient);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.ai-process-btn {
    position: relative;
    overflow: hidden;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.model-info {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

.model-info span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
}

/* Responsive AI Section */
@media (max-width: 768px) {
    .before-after-slider {
        height: 300px;
    }
    
    .slider-handle {
        width: 50px;
        height: 50px;
    }
    
    .handle-icon {
        font-size: 20px;
    }
    
    .section-description {
        font-size: 16px;
        padding: 0 20px;
    }
}

/* China Tour Section */
/* China Tour Section - Enhanced */
.china-tour {
    background: linear-gradient(135deg, 
        rgba(255, 69, 0, 0.05) 0%, 
        rgba(255, 140, 0, 0.05) 25%,
        rgba(255, 20, 147, 0.05) 75%,
        rgba(139, 0, 139, 0.05) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.china-tour::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite;
}

.tour-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 20px;
}

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

.tour-tag {
    display: inline-block;
    background: var(--pink-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.tour-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(36px, 5vw, 54px);
    margin-bottom: 10px;
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tour-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.tour-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tour-date,
.tour-spots {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    color: var(--text-primary);
}

.tour-spots {
    border-color: var(--pink-primary);
    background: rgba(255, 20, 147, 0.1);
}

.tour-description {
    margin: 40px 0;
    text-align: left;
}

.tour-description h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.tour-description p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.tour-includes h4 {
    font-size: 22px;
    margin-bottom: 30px;
    text-align: left;
    color: var(--text-primary);
}

.includes-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 40px 0;
}

.includes-list li {
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--card-border);
    text-align: left;
    text-indent: 0;
}

.includes-list li:last-child {
    border-bottom: none;
}

/* Enhanced Tour Section Styles */

/* Exclusive Badge - positioned normally on card */
.exclusive-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: linear-gradient(135deg, #FF8C00, #FF4500);
    color: white;
    padding: 6px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 3;
}

/* Spots Badge - positioned normally on card */
.spots-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #FF1493, #8B008B);
    color: white;
    padding: 6px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    animation: pulse 2s ease-in-out infinite;
    z-index: 3;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.exclusive-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.countdown-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: blink 1s infinite;
}

/* Background Elements */
.tour-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.chinese-element {
    position: absolute;
    font-size: 35px;
    opacity: 0.15;
    animation: float 25s infinite;
}

.chinese-element.element-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.chinese-element.element-2 {
    top: 25%;
    right: 12%;
    animation-delay: 6s;
}

.chinese-element.element-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 12s;
}

.chinese-element.element-4 {
    bottom: 15%;
    right: 8%;
    animation-delay: 18s;
}

/* Tour Header */
.tour-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

/* China Tour Header - specific positioning */
.china-tour-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.tour-tag {
    background: linear-gradient(135deg, #FF8C00, #FF4500);
    color: white;
    padding: 20px 40px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    animation: glow 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
    position: relative;
    top: -30px;
}

.urgency-indicator {
    background: linear-gradient(135deg, #FF1493, #8B008B);
    color: white;
    padding: 8px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    animation: urgentPulse 2s infinite;
}

.countdown-dot {
    width: 8px;
    height: 8px;
    background: #FFD700;
    border-radius: 50%;
    animation: blink 1s infinite;
}

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

/* Main Title */
.tour-main-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(45px, 7vw, 80px);
    line-height: 1.1;
    margin: 40px 0;
    text-align: center;
}

.tour-main-title span {
    display: block;
}

.title-fall {
    font-size: 0.6em;
    color: var(--text-secondary);
}

.title-highlight {
    background: linear-gradient(90deg, #FF8C00, #FF4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2em;
    animation: shimmer 2s ease-in-out infinite;
    margin: 10px 0;
}

.title-duration {
    font-size: 0.8em;
    color: var(--text-primary);
}

/* Hero Info Badges */
.tour-hero-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.location-badge,
.date-badge {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.location-badge:hover,
.date-badge:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.2);
}

.location-icon,
.date-icon {
    font-size: 30px;
}

.location-details,
.date-details {
    text-align: left;
}

.location-details strong,
.date-details strong {
    display: block;
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.location-details span,
.date-details span {
    font-size: 14px;
    color: var(--text-muted);
}

/* Enhanced Description */
.tour-description-enhanced {
    margin: 50px 0;
    text-align: center;
}

.description-title {
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.highlight-text {
    background: linear-gradient(90deg, #FF8C00, #FF1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.description-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Features Grid */
.tour-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 60px 0;
}

.feature-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 140, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.3s ease;
    opacity: 0;
}

.feature-card:hover::before {
    opacity: 1;
    animation: shine 1s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #FF8C00;
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.3);
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-muted);
    margin: 0;
}

/* Included Section */
.tour-included-section {
    margin: 60px 0;
}

.included-title {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-primary);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.included-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.1);
    border-color: #FF8C00;
}

.check-icon {
    font-size: 20px;
    margin-top: 2px;
}

.item-content strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 5px;
    font-size: 16px;
}

.item-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 14px;
}

/* Enhanced Notice */
.tour-notice-enhanced {
    margin: 50px 0;
}

.notice-card {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 140, 0, 0.1));
    border: 2px solid #FF8C00;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.notice-icon {
    font-size: 30px;
}

.notice-content {
    color: var(--text-primary);
    font-size: 16px;
}

.scarcity-notice {
    text-align: center;
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    animation: urgentPulse 3s infinite;
}

.scarcity-icon {
    font-size: 24px;
    color: #FFD700;
}

/* Enhanced CTA */
.tour-cta-enhanced {
    margin-top: 60px;
    text-align: center;
}

.price-highlight {
    margin-bottom: 30px;
}

.price-label {
    display: block;
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.price-amount {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(90deg, #FF8C00, #FF4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-tour-reserve {
    background: linear-gradient(135deg, #FF8C00, #FF4500);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 25px 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.4);
    margin-bottom: 30px;
}

.btn-tour-reserve:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(255, 140, 0, 0.6);
}

.btn-icon {
    font-size: 24px;
}

.btn-text {
    font-size: 20px;
}

.btn-subtext {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 400;
}

/* Spots Remaining Visual */
.spots-remaining {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.spots-visual {
    display: flex;
    gap: 8px;
}

.spot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.spot.filled {
    background: #FF8C00;
    border-color: #FF8C00;
    animation: fillPulse 2s infinite;
}

.spot.available {
    background: transparent;
    border-color: var(--text-muted);
}

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

.spots-text {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .tour-header {
        flex-direction: column;
        text-align: center;
    }
    
    .tour-hero-info {
        grid-template-columns: 1fr;
    }
    
    .tour-features-grid {
        grid-template-columns: 1fr;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-tour-reserve {
        padding: 20px 40px;
        font-size: 16px;
    }
    
    .spots-visual {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Scroll to Top Button - Subtle like hero scroll */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.scroll-to-top.visible {
    opacity: 0.7;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    opacity: 1;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 20, 147, 0.3);
}

.scroll-to-top svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
    transform: translateY(-1px);
}

/* Mobile adjustments for scroll button */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
    }
    
    .scroll-to-top svg {
        width: 16px;
        height: 16px;
    }
}

.include-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
}

.include-item:hover {
    transform: translateY(-3px);
    border-color: var(--pink-primary);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.1);
}

.include-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 50px;
    text-align: center;
}

.include-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.include-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.tour-notice {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 20, 147, 0.05));
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    text-align: left;
}

.tour-notice p {
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-primary);
}

.tour-notice p:last-child {
    margin-bottom: 0;
    color: var(--pink-primary);
}

.tour-cta {
    text-align: center;
    margin-top: 40px;
}

.tour-location {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.tour-btn {
    background: var(--pink-gradient);
    font-size: 18px;
    font-weight: 700;
    padding: 20px 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

.tour-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 20, 147, 0.4);
}

.tour-urgency {
    color: var(--pink-primary);
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

/* Tour Responsive */
@media (max-width: 768px) {
    .tour-details {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .includes-grid {
        grid-template-columns: 1fr;
    }
    
    .include-item {
        flex-direction: column;
        text-align: center;
    }
    
    .include-icon {
        width: 100%;
    }
}

/* Claude Chat Section */
.claude-chat-section {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
}

.chat-container {
    max-width: 800px;
    margin: 0 auto;
}

.chat-interface {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.chat-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--card-border);
    background: rgba(var(--card-bg-rgb), 0.8);
}

.chat-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.claude-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
}

.claude-icon {
    width: 24px;
    height: 24px;
    color: var(--pink-primary);
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chat-messages {
    padding: 24px;
    min-height: 300px;
    max-height: 400px;
    overflow-y: auto;
}

.message-wrapper {
    margin-bottom: 24px;
}

.message {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.assistant-message .message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--pink-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.assistant-message .message-avatar svg {
    width: 18px;
    height: 18px;
    color: white;
}

.message-content {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
}

.message-content p {
    margin: 0;
}

.suggested-questions {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--card-border);
}

.suggestions-header {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 16px;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.suggestion-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(var(--card-bg-rgb), 0.5);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    text-align: left;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    cursor: pointer;
}

.suggestion-card:hover {
    background: rgba(var(--pink-primary-rgb), 0.1);
    border-color: var(--pink-primary);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.suggestion-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.suggestion-text {
    flex: 1;
    line-height: 1.4;
}

.chat-input-wrapper {
    padding: 20px 24px;
    border-top: 1px solid var(--card-border);
    background: rgba(var(--card-bg-rgb), 0.8);
}

.chat-input-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-primary);
    border: 2px solid var(--card-border);
    border-radius: 12px;
    transition: border-color 0.2s ease;
}

.chat-input-container:focus-within {
    border-color: var(--pink-primary);
}

.chat-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    color: var(--text-primary);
    outline: none;
    resize: none;
    min-height: 20px;
    max-height: 120px;
}

.chat-input::placeholder {
    color: var(--text-light);
}

.send-button {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: var(--pink-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.5;
}

.send-button:not(:disabled) {
    opacity: 1;
}

.send-button:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 20, 147, 0.3);
}

.send-button svg {
    width: 18px;
    height: 18px;
}

.input-footer {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.input-hint {
    font-size: 12px;
    color: var(--text-light);
}

/* Chat Responsive */
@media (max-width: 768px) {
    .claude-chat-section {
        padding: 60px 0;
    }
    
    .chat-container {
        margin: 0 20px;
    }
    
    .suggestions-grid {
        grid-template-columns: 1fr;
    }
    
    .chat-header {
        padding: 16px 20px;
    }
    
    .chat-messages {
        padding: 20px;
    }
    
    .chat-input-wrapper {
        padding: 16px 20px;
    }
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, var(--pink-gradient));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .newsletter {
    background: linear-gradient(135deg, #2D2D2D, #1A1A1A, #0A0A0A);
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><path d="M0,0v46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1059,7.72,1097,6.5V0Z"/></svg>') repeat-x;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1000px); }
}

.newsletter-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-text h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(32px, 4vw, 48px);
    color: white;
    margin-bottom: 15px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
}

.newsletter-form {
    width: 100%;
    max-width: 500px;
}

.newsletter-benefits {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.form-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-top: 10px;
}

.form-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.newsletter-input {
    padding: 15px 25px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--black);
    min-width: 300px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-btn {
    white-space: nowrap;
    background: white;
    color: var(--pink-primary);
    padding: 15px 40px;
    min-width: 180px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: var(--gray-light);
    transform: translateY(-2px);
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: row;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.social-link:hover {
    color: var(--pink-light);
    transform: translateX(5px);
}

.social-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Responsive Newsletter */
@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .form-group {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-input {
        min-width: auto;
        width: 100%;
    }
    
    .social-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Hero responsive */
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
}

/* V0 Chat Interface Styles - Exact from 21st.dev */
.v0-chat-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.v0-chat-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 16px;
    gap: 32px;
}

.v0-chat-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-primary);
    margin: 0;
}

/* Typewriter Effect */
@keyframes typewriter {
    from { 
        width: 0;
    }
    to { 
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.typewriter-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid var(--primary-color);
    width: 0;
}

.typewriter-text.animate {
    animation: 
        typewriter 2s steps(30, end) forwards,
        blink 0.75s step-end infinite;
}

/* Messages Display */
.v0-messages-wrapper {
    width: 100%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    max-height: 400px;
    overflow-y: auto;
}

.v0-messages-scroll {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.v0-message {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    max-width: 80%;
}

.v0-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.v0-message.assistant {
    align-self: flex-start;
}

.v0-message-content {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.v0-message.user .v0-message-content {
    background: linear-gradient(135deg, #FF1493, #8B008B);
    color: white;
    border-bottom-right-radius: 4px;
}

.v0-message.assistant .v0-message-content {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

/* Main Input Wrapper */
.v0-chat-input-wrapper {
    width: 100%;
}

.v0-chat-input-container {
    position: relative;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.v0-textarea-container {
    overflow-y: auto;
}

.v0-textarea {
    width: 100%;
    padding: 16px;
    padding-right: 16px;
    resize: none;
    background: transparent;
    border: none;
    color: #374151;
    font-size: 14px;
    line-height: 1.5;
    min-height: 60px;
    max-height: 200px;
    outline: none;
    font-family: inherit;
    overflow: hidden;
}

.v0-textarea::placeholder {
    color: #9ca3af;
    font-size: 14px;
}

.v0-input-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border-top: 1px solid #f3f4f6;
}

.v0-left-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.v0-attach-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px;
    background: transparent;
    color: #6b7280;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.v0-attach-btn:hover {
    background: #f9fafb;
}

.v0-attach-label {
    font-size: 12px;
    color: #9ca3af;
    display: none;
    transition: opacity 0.2s ease;
}

.v0-attach-btn:hover .v0-attach-label {
    display: inline;
}

.v0-right-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.v0-project-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 14px;
    color: #9ca3af;
    background: transparent;
    border: 1px dashed #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
}

.v0-project-btn:hover {
    border-color: #9ca3af;
    background: #f9fafb;
    color: #374151;
}

.v0-send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 6px;
    border-radius: 8px;
    font-size: 14px;
    background: #f3f4f6;
    color: #9ca3af;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.2s ease;
}

.v0-send-btn.active {
    background: #374151;
    color: white;
    border-color: #374151;
}

.v0-send-btn:hover:not(.active) {
    background: #e5e7eb;
    border-color: #d1d5db;
    color: #374151;
}

.v0-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Action Buttons */
.v0-action-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.v0-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    color: #6b7280;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.v0-action-btn:hover {
    background: #f9fafb;
    color: #374151;
    border-color: #d1d5db;
}

.v0-action-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.v0-action-label {
    font-size: 12px;
}

/* Typing Animation */
.v0-typing-dots {
    display: flex;
    gap: 4px;
    padding: 8px 0;
}

.v0-typing-dots span {
    width: 6px;
    height: 6px;
    background: #999;
    border-radius: 50%;
    animation: v0-typing 1.4s infinite;
}

.v0-typing-dots span:nth-child(1) { animation-delay: 0s; }
.v0-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.v0-typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes v0-typing {
    0%, 60%, 100% { opacity: 0.3; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1); }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .v0-chat-title {
        font-size: 1.875rem;
    }
    
    .v0-action-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .v0-action-btn {
        justify-content: center;
    }
}