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

:root {
    /* Japanese-inspired Color Palette */
    --primary-red: #DC2626; /* Traditional Japanese red */
    --secondary-red: #B91C1C;
    --accent-gold: #F59E0B; /* Gold accent */
    --dark-charcoal: #1F2937;
    --light-gray: #F9FAFB;
    --medium-gray: #6B7280;
    --white: #FFFFFF;
    --black: #111827;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    --gradient-secondary: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    --gradient-text: linear-gradient(135deg, #DC2626 0%, #F59E0B 100%);
    
    /* Typography */
    --font-primary: 'Inter', 'Noto Sans JP', sans-serif;
    --font-japanese: 'Noto Sans JP', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 1.5rem;
    --border-radius: 0.75rem;
    --border-radius-lg: 1.25rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-charcoal);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-red);
}

.btn-outline:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
    z-index: 9999;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo img.logo-icon {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
    display: block;
}

.nav-logo img.logo-icon:hover {
    transform: scale(1.1);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-charcoal);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-red);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-red);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-left: 45px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}


.phone-mockup {
    width: 250px;
    height: 450px;
    background: #000;
    border-radius: 2rem;
    padding: 1rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
}

.tiktok-interface {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff0050, #00f2ea);
    position: relative;
}

.video-content {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
    border-radius: 1.5rem;
    overflow: hidden;
}

/* Sushi Girl Image */
.sushi-girl-container {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    animation: sushiGirlFloat 4s ease-in-out infinite;
}

.sushi-girl-image {
    width: 110px;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
    transform-origin: bottom center;
    transition: all 0.3s ease;
}

.sushi-girl-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

/* Animation for Sushi Girl */
@keyframes sushiGirlFloat {
    0%, 100% { 
        transform: translate(-50%, -50%) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translate(-50%, -52%) rotate(-0.5deg) scale(1.02); 
    }
    50% { 
        transform: translate(-50%, -50%) rotate(0deg) scale(1); 
    }
    75% { 
        transform: translate(-50%, -48%) rotate(0.5deg) scale(0.98); 
    }
}

/* Sushi Chef Head */
.chef-head {
    position: relative;
    width: 60px;
    height: 70px;
    margin: 0 auto;
}

.hair-back-layer {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 75px;
    height: 60px;
    background: radial-gradient(ellipse at 35% 25%, #8B4513, #654321, #3E2723);
    border-radius: 50% 50% 45% 45%;
    z-index: 1;
}

.face-beautiful {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 45px;
    height: 55px;
    background: radial-gradient(ellipse at 45% 35%, #FFF8DC, #FFE4B5, #FFDAB9);
    border-radius: 50% 50% 48% 48%;
    z-index: 3;
    box-shadow: inset 0 -3px 6px rgba(0,0,0,0.08);
}

/* Sparkling Eyes */
.eyes-sparkly {
    position: absolute;
    top: 18px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
}

.eye {
    position: relative;
    width: 16px;
    height: 20px;
}

.eye-base {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 50% 50% 50% 50%;
    border: 1.5px solid rgba(0,0,0,0.15);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.eye-iris {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 12px;
    height: 16px;
    background: radial-gradient(ellipse at 45% 35%, #FFB6C1, #FF69B4, #DC143C);
    border-radius: 50%;
}

.eye-pupil {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 4px;
    height: 7px;
    background: #000000;
    border-radius: 50%;
}

.eye-highlight1 {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 5px;
    height: 6px;
    background: white;
    border-radius: 50%;
    opacity: 0.95;
}

.eye-highlight2 {
    position: absolute;
    top: 9px;
    right: 4px;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
}

.eye-highlight3 {
    position: absolute;
    top: 12px;
    left: 3px;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    opacity: 0.6;
}

/* Cute Features */
.eyebrows-cute {
    position: absolute;
    top: 12px;
    width: 100%;
}

.eyebrow {
    position: absolute;
    width: 12px;
    height: 2.5px;
    background: linear-gradient(45deg, #654321, #3E2723);
    border-radius: 3px;
}

.eyebrow-left { left: 5px; transform: rotate(-8deg); }
.eyebrow-right { right: 5px; transform: rotate(8deg); }

.nose-small {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5px;
    height: 3px;
    background: #FFB6C1;
    border-radius: 50%;
    opacity: 0.7;
}

.mouth-happy {
    position: absolute;
    top: 42px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 6px;
    border: 2.5px solid #FF69B4;
    border-top: none;
    border-radius: 0 0 12px 12px;
}

.cheek-blush {
    position: absolute;
    top: 32px;
    width: 7px;
    height: 5px;
    background: radial-gradient(ellipse, #FFB6C1, transparent);
    border-radius: 50%;
    opacity: 0.5;
}

.cheek-left { left: 1px; }
.cheek-right { right: 1px; }

/* Hair Styling */
.hair-front-bangs {
    position: absolute;
    top: 5px;
    left: 15px;
    width: 35px;
    height: 28px;
    background: linear-gradient(145deg, #A0522D, #8B4513);
    border-radius: 0 0 25px 25px;
    z-index: 4;
}

.hair-side-strands {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 45px;
    z-index: 2;
}

.hair-side-strands::before {
    content: '';
    position: absolute;
    left: -3px;
    width: 15px;
    height: 40px;
    background: linear-gradient(145deg, #8B4513, #654321);
    border-radius: 50%;
    transform: rotate(-12deg);
}

.hair-side-strands::after {
    content: '';
    position: absolute;
    right: -3px;
    width: 15px;
    height: 40px;
    background: linear-gradient(145deg, #8B4513, #654321);
    border-radius: 50%;
    transform: rotate(12deg);
}

.hair-accessory {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #FFD700, #F59E0B);
    border-radius: 50%;
    z-index: 5;
}

.hair-accessory::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 12px;
    height: 12px;
    border: 2px solid #FF69B4;
    border-radius: 50%;
    background: transparent;
}

/* Waitress Body */
.waitress-body {
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    width: 85px;
    height: 75px;
}

.neck-elegant {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 18px;
    background: linear-gradient(145deg, #FFE4B5, #FFDAB9);
    border-radius: 7px;
}

/* Cute Uniform */
.uniform-top {
    position: relative;
    width: 70px;
    height: 50px;
    margin: 0 auto;
    background: linear-gradient(145deg, #FFB6C1 0%, #FF69B4 50%, #DC143C 100%);
    border-radius: 12px 12px 20px 20px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.uniform-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        30deg,
        transparent,
        transparent 3px,
        rgba(255, 255, 255, 0.2) 3px,
        rgba(255, 255, 255, 0.2) 6px
    );
}

.collar {
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 12px;
    background: #FFFFFF;
    border-radius: 0 0 25px 25px;
    border: 1px solid #FFB6C1;
}

.uniform-buttons {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 8px 0 #FFFFFF, 0 16px 0 #FFFFFF;
}

/* Arms Serving Pose */
.arms-serving {
    position: absolute;
    top: 15px;
    width: 100%;
}

.arm-left, .arm-right {
    position: absolute;
    width: 12px;
    height: 25px;
    background: linear-gradient(145deg, #FFE4B5, #FFDAB9);
    border-radius: 6px;
}

.arm-left { 
    left: -8px; 
    transform: rotate(-25deg);
}
.arm-right { 
    right: -8px; 
    transform: rotate(25deg);
}

.hand-left, .hand-right {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: radial-gradient(ellipse, #FFE4B5, #FFDAB9);
    border-radius: 50%;
}

/* Beautiful Cake */
.cake-tray {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.tray {
    width: 35px;
    height: 6px;
    background: linear-gradient(145deg, #C0C0C0, #808080);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cake {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 20px;
}

.cake-base {
    width: 100%;
    height: 12px;
    background: linear-gradient(145deg, #DEB887, #D2691E);
    border-radius: 0 0 12px 12px;
}

.cake-cream {
    position: absolute;
    top: 8px;
    left: 2px;
    width: 21px;
    height: 8px;
    background: linear-gradient(145deg, #FFFACD, #F5F5DC);
    border-radius: 10px 10px 5px 5px;
}

.cake-decorations {
    position: absolute;
    top: 5px;
    width: 100%;
}

.strawberry {
    position: absolute;
    top: 0;
    left: 8px;
    width: 4px;
    height: 5px;
    background: #FF6347;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.strawberry::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 1px;
    width: 2px;
    height: 2px;
    background: #228B22;
    border-radius: 50%;
}

.cherry {
    position: absolute;
    top: 0;
    right: 8px;
    width: 3px;
    height: 3px;
    background: #DC143C;
    border-radius: 50%;
}

.cream-swirl {
    position: absolute;
    top: -2px;
    left: 12px;
    width: 6px;
    height: 6px;
    background: #FFFACD;
    border-radius: 50%;
}

.cake-sparkles {
    position: absolute;
    top: -10px;
    left: -5px;
    width: 35px;
    height: 25px;
}

.sparkle {
    position: absolute;
    font-size: 8px;
    animation: sparkleFloat 3s ease-in-out infinite;
}

.sparkle1 {
    top: 2px;
    left: 5px;
    animation-delay: 0s;
}

.sparkle2 {
    top: 8px;
    right: 8px;
    animation-delay: 1s;
}

.sparkle3 {
    top: 15px;
    left: 15px;
    animation-delay: 2s;
}

/* Apron */
.apron {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    background: linear-gradient(145deg, #FFFFFF, #F8F8FF);
    border-radius: 0 0 30px 30px;
    border: 2px solid #FFB6C1;
    z-index: 5;
}

.apron-strings {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #FFB6C1;
    border-radius: 2px;
}

.apron-strings::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 0;
    width: 20px;
    height: 3px;
    background: #FFB6C1;
    border-radius: 2px;
    transform: rotate(-45deg);
}

.apron-strings::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    width: 20px;
    height: 3px;
    background: #FFB6C1;
    border-radius: 2px;
    transform: rotate(45deg);
}

.apron-pattern {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #FFB6C1;
    border-radius: 50%;
    box-shadow: 
        15px 5px 0 #FFB6C1,
        -15px 5px 0 #FFB6C1,
        0 15px 0 #FFB6C1;
}

/* Hover Animation */
.waitress-character:hover {
    transform: scale(1.08);
    transition: transform 0.4s ease;
}

/* TikTok Shop UI */
.tiktok-shop-ui {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

/* Live Badge */
.live-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(45deg, #FF0050, #FF1744);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 8px;
    font-weight: bold;
    animation: livePulse 2s ease-in-out infinite;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: liveDot 1s ease-in-out infinite;
}

.live-text {
    font-size: 8px;
    letter-spacing: 0.5px;
}

/* Viewer Count */
.viewer-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 8px;
    font-weight: bold;
}

.viewer-icon {
    font-size: 8px;
}

.viewer-number {
    font-size: 8px;
}

/* Product Card */
.product-card {
    position: absolute;
    bottom: 79px;
    left: 8px;
    right: 65px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: productSlideUp 3s ease-in-out infinite;
}

.product-image {
    font-size: 20px;
    flex-shrink: 0;
}

.product-info {
    flex: 1;
    min-width: 0;
}

.product-name {
    font-size: 9px;
    font-weight: bold;
    color: #1F2937;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 4px;
}

.old-price {
    font-size: 7px;
    color: #9CA3AF;
    text-decoration: line-through;
}

.new-price {
    font-size: 10px;
    font-weight: bold;
    color: #DC2626;
}

.add-to-cart {
    font-size: 16px;
    animation: cartBounce 2s ease-in-out infinite;
}

/* Flash Sale Banner */
.flash-sale {
    position: absolute;
    top: 40px;
    left: 8px;
    background: linear-gradient(45deg, #F59E0B, #D97706);
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 7px;
    font-weight: bold;
    animation: flashSale 1.5s ease-in-out infinite;
}

.sale-icon {
    font-size: 10px;
    animation: lightning 1s ease-in-out infinite;
}

.sale-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.sale-title {
    font-size: 7px;
}

.sale-time {
    font-size: 6px;
    opacity: 0.9;
}

/* Shopping Cart Floating */
.cart-floating {
    position: absolute;
    top: 70px;
    right: 18px;
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, #DC2626, #B91C1C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cartFloat 3s ease-in-out infinite;
}

.cart-icon {
    font-size: 14px;
    color: white;
}

.cart-count {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 12px;
    height: 12px;
    background: #F59E0B;
    color: white;
    border-radius: 50%;
    font-size: 7px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: countPulse 2s ease-in-out infinite;
}

/* Comments Stream */
.comments-stream {
    position: absolute;
    bottom: 140px;
    left: 8px;
    right: 65px;
    max-height: 60px;
    overflow: hidden;
}

.comment {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 3px 6px;
    border-radius: 8px;
    margin-bottom: 5px;
    font-size: 7px;
    animation: commentSlide 4s ease-in-out infinite;
    opacity: 0.9;
}

.comment:nth-child(1) { animation-delay: 0s; }
.comment:nth-child(2) { animation-delay: 1.5s; }

.username {
    color: #F59E0B;
    font-weight: bold;
}

.comment-text {
    color: white;
}

/* Buy Now Button */
.buy-now-tiktok {
    position: absolute;
    bottom: 32px;
    left: 8px;
    right: 65px;
    z-index: 5;
}

.buy-button {
    background: linear-gradient(45deg, #DC2626, #F59E0B);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    animation: buyButtonPulse 2s ease-in-out infinite;
}

.buy-text {
    font-size: 10px;
    font-weight: bold;
}

.buy-price {
    font-size: 11px;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 6px;
    border-radius: 8px;
}

.top-content {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    z-index: 3;
}

.greeting-bubble {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    padding: 6px 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    animation: bubblePulse 3s ease-in-out infinite;
    text-align: center;
    max-width: 140px;
    margin: 0 auto;
}

.japanese-greeting {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #DC2626;
    margin-bottom: 1px;
}

.english-greeting {
    display: block;
    font-size: 8px;
    color: #666;
}

.left-content {
    position: absolute;
    left: 6px;
    top: 45%;
    transform: translateY(-50%);
    z-index: 3;
}

.product-display {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 12px;
    padding: 6px 8px;
    margin-bottom: 8px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    text-align: center;
    animation: productFloat 3s ease-in-out infinite;
    width: 45px;
}

.product-badge {
    background: #FF4444;
    color: white;
    font-size: 7px;
    padding: 1px 4px;
    border-radius: 6px;
    margin-bottom: 3px;
    font-weight: bold;
}

.product-icon {
    font-size: 16px;
}

.discount-tag {
    background: linear-gradient(45deg, #F59E0B, #DC2626);
    color: white;
    border-radius: 10px;
    padding: 4px 6px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    animation: discountBlink 2s ease-in-out infinite;
    width: 45px;
}

.discount-percent {
    display: block;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

.discount-text {
    font-size: 7px;
    opacity: 0.9;
}

.bottom-content {
    position: absolute;
    bottom: 60px;
    left: 8px;
    right: 65px;
    z-index: 3;
}

.cta-button {
    background: linear-gradient(45deg, #DC2626, #F59E0B);
    color: white;
    border-radius: 18px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 3px 10px rgba(220, 38, 38, 0.3);
    animation: ctaPulse 2.5s ease-in-out infinite;
    font-size: 10px;
}

.cta-text {
    font-size: 9px;
    font-weight: bold;
}

.cta-arrow {
    font-size: 12px;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

/* Background Elements */
.bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.1);
    animation: circleFloat 6s ease-in-out infinite;
}

.bg-circle-1 {
    width: 45px;
    height: 45px;
    top: 15%;
    right: 8%;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 35px;
    height: 35px;
    bottom: 25%;
    left: 12%;
    animation-delay: 3s;
}

.bg-sparkle {
    position: absolute;
    font-size: 10px;
    animation: sparkle 4s ease-in-out infinite;
}

.bg-sparkle-1 {
    top: 12%;
    left: 18%;
    animation-delay: 0s;
}

.bg-sparkle-2 {
    top: 65%;
    right: 20%;
    animation-delay: 2s;
}

.bg-sparkle-3 {
    bottom: 18%;
    left: 25%;
    animation-delay: 4s;
}

.tiktok-ui {
    position: absolute;
    right: 1rem;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ui-element {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    color: var(--dark-charcoal);
    animation: float 4s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    left: -10%;
    width: 200px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -15%;
    width: 180px;
    animation-delay: 2s;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tiktok-icon, .japan-flag {
    font-size: 1.5rem;
}

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

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
}

.metric-label {
    font-size: 0.875rem;
    color: var(--medium-gray);
}

.trend-up {
    color: #10B981;
    font-weight: 600;
}

.engagement-bar {
    width: 100px;
    height: 8px;
    background: rgba(220, 38, 38, 0.2);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.bar-fill {
    width: 85%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 4px;
    animation: fillBar 2s ease-out;
}

.engagement-text {
    font-size: 0.875rem;
    color: var(--medium-gray);
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
    z-index: 1;
}

/* Trust Section */
.trust-section {
    padding: 3rem 0;
    background: var(--light-gray);
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.trust-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.badge-text h3 {
    margin: 0;
    color: var(--primary-red);
}

.badge-text p {
    margin: 0;
    color: var(--medium-gray);
    font-size: 0.875rem;
}

.trust-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.logo-item {
    opacity: 0.9;
    transition: all 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.logo-item:hover .logo-placeholder {
    border-color: var(--primary-red);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.logo-placeholder {
    padding: 1rem 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    font-weight: 600;
    color: var(--medium-gray);
    border: 2px solid rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-charcoal);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(220, 38, 38, 0.1);
}

.service-card.featured {
    border-color: var(--primary-red);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

.service-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--medium-gray);
}

.service-features li::before {
    content: '✓';
    color: var(--primary-red);
    font-weight: bold;
}

/* Process Section */
.process {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-charcoal);
}

.step-content p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--dark-charcoal);
}

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

.stats-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(220, 38, 38, 0.1);
}

.stats-card h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--dark-charcoal);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-box {
    text-align: center;
    padding: 1rem;
    background: rgba(220, 38, 38, 0.05);
    border-radius: var(--border-radius);
}

.stat-box .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    display: block;
}

.stat-box .stat-label {
    font-size: 0.875rem;
    color: var(--medium-gray);
}

/* CTA Section */
.cta {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-outline {
    min-width: 250px;
    justify-content: center;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-charcoal);
}

.contact-info p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-item h4 {
    margin: 0 0 0.25rem 0;
    color: var(--dark-charcoal);
}

.contact-item p {
    margin: 0;
    color: var(--medium-gray);
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(220, 38, 38, 0.1);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: var(--white);
    font-family: var(--font-primary);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23DC2626' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

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

/* Footer */
.footer {
    background: var(--dark-charcoal);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

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

.footer-brand {
    max-width: 350px;
}

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

.footer-logo img.logo-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.footer-logo img.logo-icon:hover {
    transform: scale(1.05);
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    font-size: 1.4rem;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

.social-links a .fa-facebook {
    font-size: 1.6rem;
}

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

.footer-column h4 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--white);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

@keyframes fillBar {
    from {
        width: 0%;
    }
    to {
        width: 85%;
    }
}

/* Anime Character Animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes chefFloat {
    0%, 100% { 
        transform: translate(-50%, -50%) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translate(-50%, -52%) rotate(-0.5deg) scale(1.02); 
    }
    50% { 
        transform: translate(-50%, -50%) rotate(0deg) scale(1); 
    }
    75% { 
        transform: translate(-50%, -48%) rotate(0.5deg) scale(0.98); 
    }
}

@keyframes sparkleFloat {
    0%, 100% { 
        opacity: 0.6; 
        transform: translateY(0px) scale(1); 
    }
    50% { 
        opacity: 1; 
        transform: translateY(-3px) scale(1.2); 
    }
}

@keyframes eyeBlink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

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

@keyframes hairSway {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(3deg); }
}

@keyframes kimonoDance {
    0%, 100% { transform: skewX(0deg) scale(1); }
    25% { transform: skewX(-1deg) scale(1.01); }
    75% { transform: skewX(1deg) scale(0.99); }
}

@keyframes sleeveWave {
    0%, 100% { transform: rotate(0deg) translateY(0px); }
    50% { transform: rotate(-5deg) translateY(-2px); }
}

@keyframes handWave {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.1); }
    75% { transform: rotate(10deg) scale(1.1); }
}

@keyframes bottomSway {
    0%, 100% { transform: skewX(0deg); }
    33% { transform: skewX(-2deg); }
    66% { transform: skewX(2deg); }
}

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

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

@keyframes productFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(2deg); }
}

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

@keyframes ctaPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4); }
}

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

@keyframes circleFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1) rotate(0deg); }
    50% { opacity: 1; transform: scale(1.2) rotate(180deg); }
}

/* TikTok Shop Animations */
@keyframes livePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

@keyframes productSlideUp {
    0%, 100% { transform: translateY(0px); opacity: 0.95; }
    50% { transform: translateY(-3px); opacity: 1; }
}

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

@keyframes lightning {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

@keyframes cartFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(5deg); }
}

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

@keyframes commentSlide {
    0% { transform: translateX(-20px); opacity: 0; }
    10%, 90% { transform: translateX(0px); opacity: 0.9; }
    100% { transform: translateX(20px); opacity: 0; }
}

@keyframes buyButtonPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4); 
    }
    50% { 
        transform: scale(1.02); 
        box-shadow: 0 6px 16px rgba(220, 38, 38, 0.6); 
    }
}

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

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        border-radius: 0.5rem;
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(220, 38, 38, 0.1);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-image {
        margin-left: 0 !important;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .trust-content {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-logos {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
        max-width: none;
        margin: 0 auto;
    }
    
    .footer-brand p {
        text-align: center;
        max-width: 85%;
        margin: 1rem auto 1.5rem auto;
        padding: 0 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .contact-item i {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        flex-shrink: 0;
        min-width: 50px;
        min-height: 50px;
    }
    
    .contact-form {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
*:focus {
    outline: none;
}

.nav-menu a:focus {
    outline: none;
    color: var(--primary-red);
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

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