/* ================================
   PURE BLISS - PREMIUM DESIGN
   Bold & Energetic Tampa Bay Style
   ================================ */

/* Import Fonts - Bold Display Typography */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');

/* CSS Variables - Premium Color Palette */
:root {
    /* Primary Colors - Bold Purple (Smoothie King inspired) */
    --primary-50: #f5f3ff;
    --primary-100: #ede9fe;
    --primary-200: #ddd6fe;
    --primary-300: #c4b5fd;
    --primary-400: #a78bfa;
    --primary-500: #8b5cf6;
    --primary-600: #7c3aed;
    --primary-700: #6d28d9;
    --primary-800: #5b21b6;
    --primary-900: #4c1d95;
    
    /* Secondary Colors - Vibrant Turquoise (Pure Bliss signature) */
    --secondary-50: #e0f7f5;
    --secondary-100: #b3ece7;
    --secondary-200: #80e0d8;
    --secondary-300: #4dd4c9;
    --secondary-400: #26cabd;
    --secondary-500: #17C3B2;
    --secondary-600: #14b5a5;
    --secondary-700: #10a394;
    --secondary-800: #0d9284;
    --secondary-900: #077366;
    
    /* Accent Colors - Energetic & Bold */
    --accent-orange: #FF6B35;
    --accent-coral: #FF9F1C;
    --accent-lime: #7FE817;
    --accent-yellow: #FFD60A;
    --accent-pink: #FF006E;
    --accent-blue: #0077B6;
    
    /* Neutral Colors */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Gradients - Bold & Vibrant */
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    --gradient-hero: linear-gradient(135deg, #8b5cf6 0%, #17C3B2 100%);
    --gradient-sunrise: linear-gradient(135deg, #FF6B35 0%, #FF9F1C 45%, #FFD60A 100%);
    --gradient-power: linear-gradient(135deg, #7FE817 0%, #17C3B2 100%);
    --gradient-energy: linear-gradient(135deg, #FF006E 0%, #8b5cf6 100%);
    --gradient-ocean: linear-gradient(135deg, #0077B6 0%, #17C3B2 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(23, 195, 178, 0.8) 100%);
    
    /* Shadows - Deep & Bold */
    --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);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-bold: 0 8px 16px -4px rgba(139, 92, 246, 0.3), 0 4px 8px -2px rgba(139, 92, 246, 0.2);
    --shadow-power: 0 8px 16px -4px rgba(23, 195, 178, 0.3), 0 4px 8px -2px rgba(23, 195, 178, 0.2);
    
    /* Typography - Bold & Modern like Smoothie King */
    --font-display: 'Montserrat', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-script: 'Pacifico', cursive;
    
    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-max: 1400px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
}

/* ================================
   RESET & BASE STYLES
   ================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Mobile viewport height fix */
    --vh: 1vh;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Enhanced mobile support */
    -webkit-tap-highlight-color: rgba(23, 195, 178, 0.1);
    -webkit-touch-callout: none;
    touch-action: manipulation;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
    /* Enhanced mobile touch targets */
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition-base);
    /* Enhanced mobile touch */
    min-height: 44px;
    min-width: 44px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

ul, ol {
    list-style: none;
}

/* ================================
   NAVIGATION
   ================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gray-900);
}

.logo-icon {
    width: 40px;
    height: 40px;
    transition: transform var(--transition-bounce);
}

.nav-brand:hover .logo-icon {
    transform: rotate(360deg) scale(1.1);
}

.brand-text {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray-700);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-sunrise);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-600);
}

.btn-premium {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-sunrise);
    color: white;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    transition: var(--transition-base);
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
    background: var(--gradient-hero);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    position: relative;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, 
        rgba(139, 92, 246, 0.2) 0%, 
        transparent 50%),
        radial-gradient(circle at 70% 30%, 
        rgba(23, 195, 178, 0.15) 0%, 
        transparent 50%);
}

/* Animated Floating Particles */
.floating-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-400);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    top: 40%;
    left: 60%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 30%;
    animation-delay: 1s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    top: 10%;
    left: 70%;
    animation-delay: 3s;
    animation-duration: 17s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -20px) scale(1.2);
    }
    50% {
        transform: translate(-15px, 15px) scale(0.8);
    }
    75% {
        transform: translate(15px, 20px) scale(1.1);
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.1), 
        rgba(52, 211, 153, 0.05));
    backdrop-filter: blur(40px);
    animation: floatElement 20s infinite ease-in-out;
}

.floating-element-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-element-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

.floating-element-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-line.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 540px;
}

.hero-heading {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-lede {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-top: 0.75rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    line-height: 1.2;
}

.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    line-height: 1.6;
    font-weight: 500;
}

.hero-pill-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0 0;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-pill:nth-child(2n) {
    background: rgba(23, 195, 178, 0.3);
}

.hero-pill span:first-child {
    font-size: 1.3rem;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.hero-trust-item span:first-child {
    font-size: 1.5rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    padding: 2rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    line-height: 1;
}

.stat-number::after {
    content: '+';
    color: var(--accent-watermelon);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-bold);
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 20px -6px rgba(139, 92, 246, 0.4), 0 6px 12px -3px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: var(--shadow-bold);
    }
    50% {
        box-shadow: 0 10px 20px -8px rgba(139, 92, 246, 0.6), 0 5px 10px -4px rgba(139, 92, 246, 0.4);
    }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-700);
    border: 3px solid var(--primary-500);
    box-shadow: var(--shadow-md);
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: white;
    border-color: var(--primary-700);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-600);
    border: 2px solid var(--primary-600);
}

.btn-outline:hover {
    background: var(--primary-600);
    color: white;
    transform: translateY(-2px);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform var(--transition-base);
}

.btn-primary:hover .btn-arrow,
.btn-outline:hover .btn-arrow {
    transform: translateX(4px);
}

.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gradient-sunrise);
    color: white;
    border-radius: 50%;
    font-size: 0.7rem;
}

.btn-secondary:hover .play-icon {
    transform: scale(1.1);
}

.hero-cta,
.hero-cta-secondary {
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    padding: 1rem 2.6rem;
}

.hero-cta {
    text-transform: uppercase;
    font-weight: 700;
}

.hero-cta-secondary {
    font-weight: 600;
}

/* Hero Imagery */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.hero-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    min-height: 520px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    background: var(--gray-100);
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(255, 107, 53, 0.45) 0%, rgba(255, 159, 28, 0.25) 40%, rgba(0, 0, 0, 0.2) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

.hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.12) contrast(1.05);
}

.hero-chip {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-700);
    padding: 0.6rem 1.3rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
    z-index: 3;
}

.hero-overlay {
    position: relative;
    z-index: 3;
    margin: auto 1.5rem 1.5rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    color: var(--gray-700);
    box-shadow: var(--shadow-lg);
}

.hero-overlay-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    background: var(--gradient-passion);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-overlay p {
    margin: 0.8rem 0 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
}

.hero-overlay-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-overlay-stats span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-full);
    background: rgba(23, 195, 178, 0.12);
    color: var(--primary-700);
    font-weight: 600;
    font-size: 0.85rem;
}

.hero-overlay-stats span::before {
    content: '✔';
    font-size: 0.8rem;
}

.hero-peel {
    position: absolute;
    border-radius: 46% 54% 58% 42%;
    opacity: 0.3;
    pointer-events: none;
    filter: blur(0);
}

.hero-peel-top {
    width: 240px;
    height: 240px;
    top: -70px;
    right: -90px;
    background: var(--gradient-sunrise);
}

.hero-peel-bottom {
    width: 280px;
    height: 280px;
    bottom: -90px;
    left: -80px;
    background: var(--gradient-passion);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    transition: opacity var(--transition-base);
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--primary-600);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-600);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

.scroll-text {
    font-size: 0.75rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ================================
   CONTAINER & SECTIONS
   ================================ */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-sunrise);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    line-height: 1.6;
    font-weight: 500;
}

.section-footer {
    text-align: center;
    margin-top: 4rem;
}

/* ================================
   FEATURES SECTION
   ================================ */

.features {
    background: linear-gradient(to bottom, 
        white 0%, 
        var(--gray-50) 50%, 
        white 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-sunrise);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-hero);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform var(--transition-bounce);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--primary-600);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ================================
   PRODUCTS SECTION
   ================================ */

.products-preview {
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px -8px rgba(139, 92, 246, 0.25), 0 8px 16px -4px rgba(139, 92, 246, 0.15);
    border-color: var(--primary-300);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--gradient-primary);
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 2rem;
}

.product-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.product-description {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.product-price {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-600);
    letter-spacing: -0.5px;
}

/* Skeleton Loading */
.skeleton {
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

.skeleton-shimmer {
    background: linear-gradient(90deg, 
        var(--gray-100) 25%, 
        var(--gray-200) 50%, 
        var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.skeleton-line {
    height: 16px;
    background: var(--gray-200);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.skeleton-line.short {
    width: 60%;
}

/* ================================
   TESTIMONIALS
   ================================ */

.testimonials {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        rgba(16, 185, 129, 0.1) 0%, 
        transparent 70%);
    border-radius: 50%;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 400px;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(100px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.testimonial-card.active {
    position: relative;
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.testimonial-content {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-100);
}

.stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.25rem;
}

blockquote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--gray-800);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info h4 {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.testimonial-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: all var(--transition-base);
    cursor: pointer;
}

.testimonial-btn.active {
    background: var(--primary-600);
    width: 32px;
    border-radius: 6px;
}

.testimonial-btn:hover {
    background: var(--primary-400);
}

/* ================================
   CTA SECTION
   ================================ */

.cta-section {
    background: linear-gradient(135deg, 
        var(--primary-600) 0%, 
        var(--primary-700) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-600);
}

.cta-section .btn-outline {
    border-color: white;
    color: white;
}

.cta-section .btn-outline:hover {
    background: white;
    color: var(--primary-600);
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand .brand-text {
    color: white;
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--gray-400);
    transition: fill var(--transition-base);
}

.social-link:hover {
    background: var(--primary-600);
    transform: translateY(-2px);
}

.social-link:hover svg {
    fill: white;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-400);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-500);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* ================================
   DEVELOPMENT PANEL
   ================================ */

.dev-panel {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(17, 24, 39, 0.95);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-2xl);
    font-size: 0.875rem;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.dev-panel h4 {
    margin-bottom: 0.5rem;
}

.dev-panel .connected {
    color: #10b981;
}

.dev-panel .disconnected {
    color: #ef4444;
}

.dev-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.dev-links a {
    color: #60a5fa;
    text-decoration: underline;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image {
        order: -1;
        padding: 1rem;
    }

    .hero-card {
        max-width: 480px;
        min-height: 480px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        transform: translateY(-100%);
        opacity: 0;
        transition: all var(--transition-base);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions button {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image {
        padding: 0;
    }

    .hero-card {
        min-height: 420px;
    }

    .hero-overlay {
        margin: 1.25rem;
        padding: 1.25rem;
    }

    .hero-pill-row {
        justify-content: flex-start;
    }

    .hero-trust {
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-content {
        padding: 2rem;
    }
    
    blockquote {
        font-size: 1.125rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================================
   UTILITY CLASSES
   ================================ */

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ================================
   PRINT STYLES
   ================================ */

@media print {
    .navbar,
    .scroll-indicator,
    .dev-panel {
        display: none;
    }
}

/* ================================
   MOBILE ENHANCEMENTS
   ================================ */

/* Better touch targets for mobile */
@media (max-width: 768px) {
    button, a, .nav-link, .btn-primary, .btn-secondary {
        min-height: 44px; /* iOS minimum touch target */
        min-width: 44px;
    }
    
    .nav-toggle {
        width: 44px;
        height: 44px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    
    .nav-toggle .bar {
        width: 24px;
        height: 2px;
        background: var(--text-primary);
        transition: all 0.3s ease;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    /* Prevent text selection on double-tap */
    button, a {
        -webkit-tap-highlight-color: rgba(0,0,0,0.1);
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
    
    /* Smoother scrolling on iOS */
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Better mobile navigation */
    .nav-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 500px;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 0.75rem 1rem;
        font-size: 1.125rem;
    }
    
    /* Mobile-friendly forms */
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 16px;
    }
    
    /* Larger, more tappable cards on mobile */
    .product-card, .feature-card, .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Hide desktop-only elements */
    .desktop-only {
        display: none !important;
    }
    
    /* Show mobile-only elements */
    .mobile-only {
        display: block !important;
    }
}

/* Tablet optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .products-grid, .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small mobile phones */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Landscape mode for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        max-height: 80vh;
        overflow-y: auto;
    }
}

/* Dark mode support for mobile */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #f3f4f6;
        --text-secondary: #d1d5db;
        --bg-primary: #111827;
        --bg-secondary: #1f2937;
    }
    
    body {
        background: var(--bg-primary);
        color: var(--text-primary);
    }
    
    .navbar, .footer {
        background: var(--bg-secondary);
    }
    
    .product-card, .feature-card {
        background: var(--bg-secondary);
    }
}

/* iOS-specific fixes */
@supports (-webkit-touch-callout: none) {
    /* iOS Safari */
    input, textarea {
        font-size: 16px; /* Prevents zoom */
    }
    
    .navbar {
        position: sticky; /* Better than fixed on iOS */
        top: 0;
    }
}

/* Android-specific optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Touch devices */
    button:active, a:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .btn-primary:active, .btn-secondary:active {
        opacity: 0.9;
    }
}

/* ================================
   ENHANCED MOBILE OPTIMIZATIONS
   ================================ */

/* Touch-friendly spacing */
@media (max-width: 768px) {
    :root {
        --section-padding: clamp(3rem, 8vw, 6rem);
    }
    
    /* Improved touch targets */
    .nav-link {
        min-height: 48px;
        padding: 12px 16px;
        display: flex;
        align-items: center;
    }
    
    /* Better button sizing */
    .btn-primary, .btn-secondary {
        min-height: 48px;
        padding: 14px 28px;
        font-size: 16px;
    }
    
    /* Optimized forms */
    input, textarea, select {
        font-size: 16px; /* Prevents iOS zoom */
        min-height: 48px;
        padding: 12px 16px;
        border-radius: var(--radius-md);
    }
    
    /* Card improvements */
    .product-card, .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    /* Spacing improvements */
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    /* Hero section mobile */
    .hero {
        min-height: 60vh;
        padding: 3rem 1.25rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.25rem);
    }
    
    /* Menu grid optimization */
    .menu-grid, .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Events layout */
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Navigation enhancements */
    .mobile-toggle {
        padding: 12px;
        min-width: 48px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Footer mobile */
    .footer {
        padding: 2rem 1.25rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* Landscape mobile optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .nav-menu {
        max-height: 80vh;
        overflow-y: auto;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    /* Reduce animations on mobile for performance */
    * {
        animation-duration: 0.3s !important;
    }
    
    /* Optimize images */
    img {
        image-rendering: -webkit-optimize-contrast;
    }
    
    /* Smooth scrolling on touch */
    .menu-grid, .products-grid, .events-grid {
        -webkit-overflow-scrolling: touch;
    }
}

/* Safe area insets for notched devices */
@supports (padding: max(0px)) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
    
    .navbar {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
        padding-top: max(1rem, env(safe-area-inset-top));
    }
    
    .footer {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    button, .btn-primary, .btn-secondary {
        border: 2px solid currentColor;
    }
    
    .product-card, .feature-card {
        border: 2px solid var(--gray-300);
    }
}

/* ================================
   TROPICAL THEME ENHANCEMENTS
   ================================ */

/* Floating Bubbles Animation */
.floating-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(23, 195, 178, 0.3));
    border-radius: 50%;
    opacity: 0.6;
    animation: float-up 15s infinite ease-in;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5);
}

.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 25%;
    animation-duration: 15s;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    width: 30px;
    height: 30px;
    left: 45%;
    animation-duration: 10s;
    animation-delay: 4s;
}

.bubble:nth-child(4) {
    width: 50px;
    height: 50px;
    left: 65%;
    animation-duration: 13s;
    animation-delay: 1s;
}

.bubble:nth-child(5) {
    width: 45px;
    height: 45px;
    left: 80%;
    animation-duration: 14s;
    animation-delay: 3s;
}

.bubble:nth-child(6) {
    width: 35px;
    height: 35px;
    left: 90%;
    animation-duration: 11s;
    animation-delay: 5s;
}

@keyframes float-up {
    0% {
        bottom: -100px;
        opacity: 0;
        transform: translateX(0) scale(1);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        bottom: 110vh;
        opacity: 0;
        transform: translateX(100px) scale(0.5);
    }
}

/* Splash Effect */
.splash-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(23, 195, 178, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: splash-pulse 3s ease-in-out infinite;
}

@keyframes splash-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

/* Fruit Icons Styling */
.fruit-icon {
    display: inline-block;
    font-size: 2rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform var(--transition-base);
}

.fruit-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Brand Logo Styling - Script Font */
.brand-logo {
    font-family: var(--font-script);
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Organic Badge */
.organic-badge {
    display: inline-block;
    background: var(--gradient-sunshine);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-lg);
    animation: badge-glow 2s ease-in-out infinite;
}

@keyframes badge-glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(255, 217, 61, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 217, 61, 0.8);
    }
}

/* Rewards Card Styling */
.rewards-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.rewards-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate-gradient 20s linear infinite;
}

@keyframes rotate-gradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.qr-code-container {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    display: inline-block;
    box-shadow: var(--shadow-xl);
}

/* Tropical Card Enhancements */
.tropical-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary-500);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.tropical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.tropical-card:hover::before {
    transform: scaleX(1);
}

.tropical-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* Wave Divider */
.wave-divider {
    position: relative;
    width: 100%;
    height: 80px;
    background: var(--gradient-primary);
}

.wave-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
}

/* Smoothie Cup Animation */
.smoothie-cup {
    position: relative;
    display: inline-block;
    animation: cup-bob 3s ease-in-out infinite;
}

@keyframes cup-bob {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* Straw Animation */
.straw {
    animation: straw-wiggle 2s ease-in-out infinite;
    transform-origin: bottom center;
}

@keyframes straw-wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(2deg);
    }
    75% {
        transform: rotate(-2deg);
    }
}

/* Hide/show utility classes */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

/* Truck and Fruit Animations */
@keyframes truck-arrive {
    0% {
        transform: translateX(-100%) scale(0.5);
        opacity: 0;
    }
    60% {
        transform: translateX(10%) scale(1.1);
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes fruit-bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(10deg);
    }
}