/* Custom CSS para Bloomy Beauty Landing Page */
/* Updated color palette based on actual logo colors */
:root {
    --bloomy-green: #4A5B40;
    --bloomy-gold: #C8B278;
    --bloomy-light-green: #6B7B60;
    --bloomy-dark-green: #383E32;
    --gradient-primary: linear-gradient(135deg, var(--bloomy-green) 0%, var(--bloomy-light-green) 50%, var(--bloomy-dark-green) 100%);
    --gradient-gold: linear-gradient(135deg, var(--bloomy-gold) 0%, #D4C89E 100%);
}

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

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

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

@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
}

/* Floating WhatsApp button animation */
.fixed .bg-green-500 {
    animation: pulse-gold 2s infinite;
}

/* Golden Particles Background Effects */
.golden-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    max-width: 100vw;
}

.particle {
    position: absolute;
    background: var(--bloomy-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle linear infinite;
}

.particle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(200, 178, 120, 0.8) 0%, rgba(200, 178, 120, 0.3) 50%, transparent 70%);
    border-radius: 50%;
    animation: pulse-particle 3s ease-in-out infinite alternate;
}

/* Floating particle animation */
@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(var(--random-x, 0)) rotate(360deg);
        opacity: 0;
    }
}

/* Pulse effect for particles */
@keyframes pulse-particle {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

/* Floating orbs animation */
@keyframes float-orb {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) translateX(-15px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) translateX(5px) rotate(270deg);
    }
}

/* Different particle sizes */
.particle-small {
    width: 4px;
    height: 4px;
    animation-duration: 15s;
    animation-delay: 0s;
}

.particle-medium {
    width: 8px;
    height: 8px;
    animation-duration: 20s;
    animation-delay: -5s;
}

.particle-large {
    width: 12px;
    height: 12px;
    animation-duration: 25s;
    animation-delay: -10s;
}

/* Floating orbs - larger golden circles */
.floating-orb {
    position: absolute;
    background: linear-gradient(45deg, var(--bloomy-gold), rgba(200, 178, 120, 0.7));
    border-radius: 50%;
    opacity: 0.3;
    animation: float-orb 8s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(200, 178, 120, 0.4);
}

.orb-1 {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.orb-2 {
    width: 40px;
    height: 40px;
    top: 70%;
    right: 10%;
    animation-delay: -4s;
    animation-duration: 16s;
}

.orb-3 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 3%;
    animation-delay: -8s;
    animation-duration: 20s;
}

.orb-4 {
    width: 30px;
    height: 30px;
    bottom: 20%;
    left: 8%;
    animation-delay: -12s;
    animation-duration: 14s;
}

.orb-5 {
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    animation-delay: -6s;
    animation-duration: 18s;
}

/* Sparkle effect */
@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--bloomy-gold);
    border-radius: 50%;
    animation: sparkle 2s linear infinite;
    box-shadow: 0 0 10px var(--bloomy-gold);
}

/* Ensure content is above particles */
.relative {
    z-index: 2;
}

/* ===== MOBILE BUG FIXES ===== */

/* Prevent horizontal overflow on mobile */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

/* Ensure all containers respect viewport width */
* {
    max-width: 100%;
    box-sizing: border-box;
}

/* Fix container widths on mobile */
@media screen and (max-width: 768px) {
    
    /* Prevent horizontal scrolling */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    /* Fix container padding */
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Fix sections that might cause overflow */
    section {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    /* Fix carousel container */
    .carousel-container {
        overflow: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .carousel-track {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .carousel-slide {
        max-width: 100% !important;
        width: 100% !important;
        flex-shrink: 0 !important;
    }
    
    /* Fix particle containers */
    .golden-particles {
        overflow: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    /* Fix individual particles */
    .particle,
    .floating-orb,
    .sparkle {
        max-width: 100vw !important;
    }
    
    /* Ensure particles don't overflow */
    .particle[style*="left: 98%"],
    .particle[style*="left: 93%"],
    .particle[style*="left: 88%"] {
        left: 85% !important;
    }
    
    /* Fix cards and content */
    .hero-card-mobile,
    .pricing-card,
    .contact-card {
        max-width: 100% !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Fix grid layouts */
    .grid {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Fix text containers */
    .max-w-lg,
    .max-w-xl,
    .max-w-2xl,
    .max-w-3xl,
    .max-w-4xl,
    .max-w-5xl {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* Fix absolute positioned elements */
    .absolute {
        max-width: calc(100vw - 2rem) !important;
    }
    
    /* Fix background patterns that might overflow */
    .absolute.inset-0 {
        left: 0 !important;
        right: 0 !important;
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    /* Hide or reposition background circles that might overflow */
    .absolute.right-20,
    .absolute.right-10 {
        right: 1rem !important;
        max-width: calc(100vw - 2rem) !important;
    }
    
    .absolute.top-32.right-20 {
        right: 0.5rem !important;
        width: 3rem !important;
        height: 3rem !important;
    }
    
    .absolute.bottom-40.right-10 {
        right: 0.5rem !important;
        width: 4rem !important;
        height: 4rem !important;
    }
    
    /* Ensure WhatsApp button is visible */
    .fixed {
        position: fixed !important;
        z-index: 9999 !important;
    }
    
    .fixed.bottom-6.right-6 {
        bottom: 1.5rem !important;
        right: 1.5rem !important;
        left: auto !important;
        top: auto !important;
    }
    
    /* Fix hero section specifically */
    .min-h-screen {
        min-height: 100vh !important;
        max-width: 100vw !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Fix typography that might cause overflow */
    h1, h2, h3, h4, h5, h6, p, span, div {
        word-wrap: break-word !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
    
    /* Fix images */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Fix buttons */
    button, .button, a.button {
        max-width: 100% !important;
        width: auto !important;
        word-wrap: break-word !important;
    }
    
    /* Fix pricing cards specifically */
    .bg-gradient-to-br {
        max-width: 100% !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Fix contact section */
    .grid.lg\\:grid-cols-2 {
        display: block !important;
    }
    
    .grid.md\\:grid-cols-2 {
        display: block !important;
    }
    
    .grid.md\\:grid-cols-3 {
        display: block !important;
    }
    
    /* Fix any transform that might cause overflow */
    .transform {
        max-width: 100% !important;
    }
    
    /* Fix rounded elements */
    .rounded-full,
    .rounded-xl,
    .rounded-2xl {
        max-width: 100% !important;
    }
}

/* Extra protection for very small screens */
@media screen and (max-width: 375px) {
    .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    
    .px-4 {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
    
    .px-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
}

/* WhatsApp Button Visibility Fix */
.fixed.bottom-6.right-6 {
    position: fixed !important;
    bottom: 1.5rem !important;
    right: 1.5rem !important;
    z-index: 999999 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Additional Mobile Overflow Protection */
@media screen and (max-width: 768px) {
    
    /* Prevent any element from causing horizontal scroll */
    * {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }
    
    /* Force all sections to fit within viewport */
    section {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        position: relative !important;
    }
    
    /* Ensure no negative margins cause overflow */
    * {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Reset any transforms that might cause overflow */
    .transform {
        transform: none !important;
    }
    
    /* Force WhatsApp button to be visible */
    .animate-pulse {
        animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
    }
    
    /* Ensure buttons are not cut off */
    button, .button, a[class*="button"] {
        position: relative !important;
        z-index: 10 !important;
    }
}

/* MOBILE FIXES - Critical overflow prevention */
html {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
}

body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Force all containers to respect viewport */
.container, .max-w-5xl, .max-w-4xl, .max-w-3xl, .max-w-2xl, .max-w-lg {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

/* MOBILE SPECIFIC FIXES */
@media screen and (max-width: 768px) {
    
    /* Eliminate white borders completely */
    * {
        box-sizing: border-box !important;
    }
    
    html, body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Fix header and navigation */
    header {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    nav {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* Fix mobile menu button positioning */
    #mobile-menu-btn {
        position: relative !important;
        z-index: 1000 !important;
        right: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Fix mobile menu dropdown */
    #mobile-menu {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        background-color: white !important;
        border-top: 1px solid #e5e7eb !important;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
        z-index: 1000 !important;
    }
    
    #mobile-menu .px-4 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    #mobile-menu a {
        display: block !important;
        padding: 0.75rem 0 !important;
        color: var(--bloomy-green) !important;
        text-decoration: none !important;
        border-bottom: 1px solid #f3f4f6 !important;
        transition: color 0.3s ease !important;
    }
    
    #mobile-menu a:hover {
        color: var(--bloomy-gold) !important;
    }
    
    #mobile-menu a:last-child {
        border-bottom: none !important;
    }
    
    /* Fix WhatsApp button - CRITICAL */
    .fixed.bottom-6.right-6 {
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        z-index: 999999 !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 60px !important;
        height: 60px !important;
        transform: none !important;
    }
    
    /* Ensure WhatsApp button is always visible */
    .fixed.bottom-6.right-6 a {
        width: 60px !important;
        height: 60px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        background-color: #25D366 !important;
        color: white !important;
        text-decoration: none !important;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4) !important;
    }
    
    /* Fix all sections to prevent overflow */
    section {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Fix hero section specifically */
    section.relative.min-h-screen {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        position: relative !important;
    }
    
    /* Fix containers inside sections */
    section .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    /* Fix background particles container */
    .golden-particles {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    /* Fix individual particles that might overflow */
    .particle, .floating-orb, .sparkle {
        max-width: none !important; /* Reset previous constraint */
    }
    
    /* Specifically fix high percentage left positions */
    .particle[style*="left: 98%"] {
        left: 85% !important;
    }
    
    .particle[style*="left: 93%"] {
        left: 80% !important;
    }
    
    .particle[style*="left: 88%"] {
        left: 75% !important;
    }
    
    /* Fix background pattern circles */
    .absolute.top-32.right-20 {
        right: 10px !important;
        width: 40px !important;
        height: 40px !important;
    }
    
    .absolute.bottom-40.right-10 {
        right: 10px !important;
        width: 50px !important;
        height: 50px !important;
    }
    
    /* Fix any grid layouts */
    .grid.md\\:grid-cols-2,
    .grid.lg\\:grid-cols-2,
    .grid.md\\:grid-cols-3 {
        display: block !important;
        width: 100% !important;
    }
    
    /* Fix text containers */
    .text-4xl, .text-5xl {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
    
    .text-3xl {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }
    
    /* Fix buttons */
    button, .button, a.button {
        word-wrap: break-word !important;
        width: auto !important;
        max-width: 100% !important;
    }
    
    /* Fix carousel specifically */
    .carousel-container {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        margin: 0 !important;
    }
    
    .carousel-track {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .carousel-slide {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}

/* FINAL MOBILE ADJUSTMENTS - Eliminate white borders completely */
@media screen and (max-width: 768px) {
    
    /* Force full width on root elements */
    #__next, .app, main {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Centralize and adjust main content */
    .min-h-screen {
        min-height: 100vh !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Fix viewport units */
    .w-screen {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .max-w-screen-xl,
    .max-w-screen-lg,
    .max-w-screen-md {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Ensure no element escapes viewport */
    * {
        max-width: 100vw !important;
    }
    
    /* Final WhatsApp button fix */
    .fixed {
        position: fixed !important;
    }
    
    .bottom-6 {
        bottom: 1.5rem !important;
    }
    
    .right-6 {
        right: 1.5rem !important;
    }
    
    /* Ensure z-index hierarchy */
    header {
        z-index: 50 !important;
    }
    
    #mobile-menu {
        z-index: 45 !important;
    }
    
    .fixed.bottom-6.right-6 {
        z-index: 999999 !important;
    }
    
    /* Force proper box model */
    *, *::before, *::after {
        box-sizing: border-box !important;
    }
    
    /* Remove any negative margins that might cause overflow */
    * {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .container {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* WhatsApp Button Enhanced Visibility */
.fixed.bottom-6.right-6 {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    z-index: 999999 !important;
    width: 64px !important;
    height: 64px !important;
}

.fixed.bottom-6.right-6 a {
    width: 64px !important;
    height: 64px !important;
    background-color: #25D366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 1.5rem !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4) !important;
    transition: transform 0.2s ease !important;
}

.fixed.bottom-6.right-6 a:hover {
    transform: scale(1.1) !important;
}

/* Hero section gradient overlay */
.hero-overlay {
    background: linear-gradient(135deg, rgba(45, 90, 39, 0.9) 0%, rgba(27, 58, 26, 0.9) 100%);
}

/* Portfolio hover effects */
.portfolio-item {
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

/* Pricing cards hover effects */
.pricing-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

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

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Button hover effects */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Testimonial cards */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(45, 90, 39, 0.1);
}

/* FAQ accordion styling */
.faq-question:hover {
    background-color: rgba(45, 90, 39, 0.05);
}

.faq-question.active .fas {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.show {
    max-height: 200px;
}

/* Form styling */
.form-input {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Loading spinner for buttons */
.btn-loading {
    position: relative;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

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

/* Mobile responsiveness improvements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Tablet responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop enhancements */
@media (min-width: 1025px) {
    .hero-section {
        min-height: 90vh;
    }
    
    .section-padding {
        padding: 6rem 0;
    }
}

/* Utility classes */
.bg-gradient-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #F7E98E 100%);
}

.bg-gradient-green {
    background: linear-gradient(135deg, #2D5A27 0%, #4A7C59 100%);
}

.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.backdrop-blur {
    backdrop-filter: blur(10px);
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--bloomy-gold);
}

/* Selection color */
::selection {
    background-color: var(--bloomy-gold);
    color: var(--bloomy-dark-green);
}

::-moz-selection {
    background-color: var(--bloomy-gold);
    color: var(--bloomy-dark-green);
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--bloomy-gold);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .fixed,
    .sticky {
        position: static !important;
    }
    
    .shadow-lg,
    .shadow-xl {
        box-shadow: none !important;
    }
    
    .bg-gradient-to-br,
    .bg-gradient-to-r {
        background: #2D5A27 !important;
        color: white !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .text-gray-600 {
        color: #000 !important;
    }
    
    .text-gray-200 {
        color: #fff !important;
    }
    
    .border-opacity-30 {
        border-opacity: 1 !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .bg-white {
        background-color: #1a1a1a;
        color: #ffffff;
    }
    
    .bg-gray-50 {
        background-color: #2a2a2a;
    }
    
    .text-gray-600 {
        color: #cccccc;
    }
    
    .text-gray-700 {
        color: #e0e0e0;
    }
}

/* Performance optimizations */
.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
    image-rendering: optimizeQuality;
}

/* Font loading optimization */
.font-playfair {
    font-display: swap;
}

.font-inter {
    font-display: swap;
}

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

/* Skip link for keyboard navigation */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #2D5A27;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #D4AF37;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Error states */
.error {
    border-color: #dc2626 !important;
    background-color: rgba(220, 38, 38, 0.05) !important;
}

.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Success states */
.success {
    border-color: #16a34a !important;
    background-color: rgba(22, 163, 74, 0.05) !important;
}

.success-message {
    color: #16a34a;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Cookie consent banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 90, 39, 0.95);
    color: white;
    padding: 1rem;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

/* Newsletter signup */
.newsletter-signup {
    background: linear-gradient(135deg, #2D5A27 0%, #4A7C59 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-signup::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

/* Social proof indicators */
.social-proof {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #2D5A27;
}

.social-proof::before {
    content: '✨';
    font-size: 1rem;
}

/* Tooltip styles */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #2D5A27;
    color: white;
    padding: 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 1000;
}

.tooltip:hover::after {
    opacity: 1;
}

/* Progress indicator */
.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    display: block;
    width: 0%;
    height: 100%;
    background: #D4AF37;
    transition: width 0.3s ease;
}

/* Modal styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    border-radius: 1rem;
    max-width: 90vw;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.8) translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal {
    transform: scale(1) translateY(0);
}

/* Checkout specific styles */
.checkout-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.plan-selector {
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.plan-selector.selected {
    border-color: #D4AF37;
    background-color: rgba(212, 175, 55, 0.05);
}

.plan-selector:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

/* Payment icons */
.payment-icons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    opacity: 0.7;
}

.payment-icons i {
    font-size: 1.5rem;
}

/* Security badge */
.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #16a34a;
    background: rgba(22, 163, 74, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.security-badge::before {
    content: '🔒';
}

/* Urgency indicators */
.urgency-indicator {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

/* Call-to-action enhancements */
.cta-pulse {
    animation: pulse-gold 2s infinite;
}

.cta-shake {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Sticky header effect */
.header-sticky {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(45, 90, 39, 0.1);
}

/* Section dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    margin: 2rem auto;
    max-width: 200px;
}

/* Testimonial quote styling */
.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: #D4AF37;
    position: absolute;
    top: -10px;
    left: -10px;
    font-family: serif;
}

.testimonial-quote {
    position: relative;
    padding-left: 2rem;
}

/* Star rating */
.star-rating {
    display: inline-flex;
    gap: 0.25rem;
}

.star {
    color: #D4AF37;
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

.star:hover {
    transform: scale(1.2);
}

/* Badge styles */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-gold {
    background: linear-gradient(135deg, #D4AF37, #F7E98E);
    color: #1a1a1a;
}

.badge-green {
    background: linear-gradient(135deg, #2D5A27, #4A7C59);
    color: white;
}

/* Interactive elements */
.interactive-hover {
    transition: all 0.3s ease;
    cursor: pointer;
}

.interactive-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Gradient borders */
.gradient-border {
    position: relative;
    border-radius: 1rem;
    padding: 2px;
    background: linear-gradient(135deg, #D4AF37, #2D5A27);
}

.gradient-border-inner {
    background: white;
    border-radius: calc(1rem - 2px);
    padding: 2rem;
}

/* Course module timeline */
.timeline-item {
    position: relative;
    padding-left: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #D4AF37, #2D5A27);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 1rem;
    width: 1rem;
    height: 1rem;
    background: #D4AF37;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #D4AF37;
}

.timeline-item:last-child::before {
    display: none;
}

/* Performance optimizations - will be loaded asynchronously */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Hero Section Enhancements */
.hero-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(200, 178, 120, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200, 178, 120, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(74, 91, 64, 0.1) 0%, transparent 50%);
}

.hero-badge {
    backdrop-filter: blur(10px);
    background: rgba(200, 178, 120, 0.15);
    border: 1px solid rgba(200, 178, 120, 0.3);
}

.hero-card {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-floating-elements {
    animation: float 6s ease-in-out infinite;
}

.hero-floating-elements:nth-child(2) {
    animation-delay: -2s;
}

.hero-floating-elements:nth-child(3) {
    animation-delay: -4s;
}

/* Enhanced gradient backgrounds */
.bg-gradient-bloomy {
    background: var(--gradient-primary);
}

.bg-gradient-gold {
    background: var(--gradient-gold);
}

/* Advanced button styles */
.btn-primary-new {
    background: var(--gradient-gold);
    color: var(--bloomy-dark-green);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-new:hover::before {
    left: 100%;
}

.btn-primary-new:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 40px rgba(200, 178, 120, 0.3);
}

.btn-secondary-new {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary-new:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-1px);
}

/* Improved animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@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);
    }
}

/* Responsive typography improvements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        line-height: 1.6;
    }
    
    .hero-card {
        margin-top: 2rem;
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
        line-height: 1.1;
    }
}

/* Enhanced card styles */
.stats-card {
    background: rgba(74, 91, 64, 0.05);
    border: 1px solid rgba(74, 91, 64, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.stats-card:hover {
    background: rgba(74, 91, 64, 0.1);
    transform: translateY(-2px);
}

.stats-card-gold {
    background: rgba(200, 178, 120, 0.05);
    border: 1px solid rgba(200, 178, 120, 0.2);
}

.stats-card-gold:hover {
    background: rgba(200, 178, 120, 0.1);
}

/* Urgency banner styles */
.urgency-banner {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    backdrop-filter: blur(10px);
}

.urgency-pulse {
    animation: pulse 2s infinite;
}

/* Floating elements animation */
.floating-decoration {
    animation: float 8s ease-in-out infinite;
}

.floating-decoration:nth-child(odd) {
    animation-direction: reverse;
}

/* Scroll indicator */
.scroll-indicator {
    animation: bounce 2s infinite;
}

/* Enhanced shadows */
.shadow-bloomy {
    box-shadow: 0 25px 50px -12px rgba(74, 91, 64, 0.25);
}

.shadow-gold {
    box-shadow: 0 25px 50px -12px rgba(200, 178, 120, 0.25);
}

/* Text enhancements */
.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Border effects */
.border-gradient {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box, var(--gradient-gold) border-box;
}

/* Mobile Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 2rem; /* Space for indicators */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    width: 100%;
    flex-shrink: 0;
}

.carousel-indicator {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    background-clip: padding-box;
    min-width: 12px;
    min-height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carousel-indicator.active {
    background-color: var(--bloomy-gold) !important;
    transform: scale(1.4);
    box-shadow: 
        0 0 12px rgba(200, 178, 120, 0.8),
        0 0 24px rgba(200, 178, 120, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.carousel-indicator:hover {
    background-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.25);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Mobile First Hero Optimizations */
@media (max-width: 768px) {
    .hero-mobile-optimized {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    /* Ensure mobile viewport is utilized */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Enhanced indicators for mobile */
    .carousel-indicator {
        width: 14px;
        height: 14px;
        border: 2px solid rgba(255, 255, 255, 0.2);
        background-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    
    .carousel-indicator.active {
        background-color: var(--bloomy-gold);
        border-color: rgba(255, 255, 255, 0.5);
        transform: scale(1.5);
        box-shadow: 
            0 0 16px rgba(200, 178, 120, 0.8),
            0 0 32px rgba(200, 178, 120, 0.4),
            0 4px 12px rgba(0, 0, 0, 0.3);
    }
}
    
    .hero-card-mobile {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 1rem;
        padding: 1.5rem;
        margin: 0.5rem;
        box-shadow: 0 8px 32px rgba(74, 91, 64, 0.1);
    }
    
    .hero-card-mobile:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }
    
    .hero-icon-mobile {
        width: 4rem;
        height: 4rem;
        background: var(--gradient-gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        box-shadow: 0 4px 16px rgba(200, 178, 120, 0.3);
    }
    
    .hero-title-mobile {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle-mobile {
        font-size: 1.125rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }
    
    .hero-cta-mobile {
        width: 100%;
        padding: 1rem;
        font-size: 1.125rem;
        font-weight: 700;
        border-radius: 0.75rem;
        transition: all 0.3s ease;
    }
    
    .hero-cta-primary {
        background: var(--gradient-gold);
        color: var(--bloomy-dark-green);
        border: none;
        box-shadow: 0 4px 16px rgba(200, 178, 120, 0.3);
    }
    
    .hero-cta-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(200, 178, 120, 0.4);
    }
    
    .hero-cta-secondary {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(10px);
    }
    
    .hero-cta-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: white;
    }
    
    .hero-stats-mobile {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-stat-item {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 0.75rem;
        backdrop-filter: blur(10px);
    }
    
    .hero-urgency-mobile {
        background: rgba(239, 68, 68, 0.15);
        border: 1px solid rgba(239, 68, 68, 0.3);
        border-radius: 0.75rem;
        padding: 1rem;
        backdrop-filter: blur(10px);
        text-align: center;
    }
    
    .profile-mobile {
        width: 6rem;
        height: 6rem;
        border-radius: 50%;
        border: 3px solid var(--bloomy-gold);
        box-shadow: 0 4px 16px rgba(200, 178, 120, 0.3);
        margin: 0 auto 1rem;
        overflow: hidden;
    }
}

/* Tablet and Desktop Enhancements */
@media (min-width: 769px) {
    .carousel-container {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .carousel-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        transform: none !important;
    }
    
    .carousel-slide {
        width: auto;
    }
    
    .carousel-indicator {
        display: none;
    }
    
    .hero-card-mobile {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 1rem;
        padding: 2rem;
        transition: all 0.3s ease;
    }
    
    .hero-card-mobile:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(74, 91, 64, 0.2);
    }
}

/* Enhanced carousel indicators */
.carousel-indicators-container {
    padding: 1rem 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    min-height: 3rem; /* Ensure space for scaled indicators */
}

.carousel-indicator {
    position: relative;
    z-index: 1;
}

.carousel-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
    z-index: -1;
}

.carousel-indicator.active::before {
    background: rgba(200, 178, 120, 0.2);
    transform: translate(-50%, -50%) scale(1);
}

/* Accessibility improvements for carousel */
.carousel-indicator:focus {
    outline: 2px solid var(--bloomy-gold);
    outline-offset: 4px;
    border-radius: 50%;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .carousel-track {
        transition: none;
    }
    
    .carousel-indicator {
        transition: none;
    }
    
    .hero-cta-mobile {
        transition: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-card-mobile {
        background: rgba(255, 255, 255, 0.9);
        color: #000;
        border: 2px solid #000;
    }
    
    .carousel-indicator {
        background: #000 !important;
        border: 2px solid #fff;
    }
    
    .carousel-indicator.active {
        background: var(--bloomy-gold) !important;
        border: 2px solid #000;
    }
}

/* Loading animation for carousel */
.carousel-loading {
    opacity: 0;
    animation: fadeInScale 0.5s ease-out forwards;
}

.carousel-loading.loaded {
    opacity: 1;
}

/* Touch feedback */
.carousel-slide:active {
    transform: scale(0.98);
}

/* Smooth transitions for better UX */
.hero-section-mobile {
    transition: all 0.3s ease;
}

/* Animation for card entrance */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-slide {
    animation: slideInFromRight 0.5s ease-out;
}

.carousel-slide:nth-child(2) {
    animation-delay: 0.1s;
}

.carousel-slide:nth-child(3) {
    animation-delay: 0.2s;
}

/* Red Urgency Banner Styles Removed */

/* Enhanced Gold Frame for Nicole's Photo */
.profile-gold-frame {
    position: relative;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(45deg, #C8B278, #D4C89E, #E6D7B1, #C8B278);
    background-size: 300% 300%;
    animation: goldShimmer 3s ease-in-out infinite;
    box-shadow: 
        0 0 20px rgba(200, 178, 120, 0.4),
        0 0 40px rgba(200, 178, 120, 0.2),
        inset 0 0 20px rgba(200, 178, 120, 0.1);
    margin: 0 auto !important;
    display: block !important;
}

@keyframes goldShimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.profile-image-container {
    border-radius: 50%;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* Mobile optimizations for new layout */
@media (max-width: 768px) {
    .hero-section-mobile {
        padding-top: 5rem; /* Space for header only */
    }
    
    .profile-mobile-enhanced {
        width: 8rem;
        height: 8rem;
        margin: 2rem auto 1.5rem;
    }
    
    .hero-title-enhanced {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .hero-subtitle-enhanced {
        font-size: 1rem;
        margin-bottom: 3rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }
}

/* Enhanced shadow effects */
.shadow-gold-enhanced {
    box-shadow: 
        0 4px 20px rgba(200, 178, 120, 0.3),
        0 8px 40px rgba(200, 178, 120, 0.15);
}

/* Pulsing animation for urgency */
.pulse-red {
    animation: pulseRed 2s infinite;
}

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

/* Text flowing animation */
.text-flow {
    display: inline-block;
    animation: textFlow 2s ease-in-out infinite;
}

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

/* Enhanced urgency banner with flowing effect */
.flowing-urgency {
    background: linear-gradient(
        90deg,
        #dc2626 0%,
        #ef4444 20%,
        #fca5a5 40%,
        #ef4444 60%,
        #dc2626 80%,
        #b91c1c 100%
    );
    background-size: 300% 100%;
    animation: flow 3s linear infinite;
}

@keyframes flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .profile-gold-frame {
        animation: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .profile-gold-frame {
        background: #C8B278;
        border: 3px solid #000;
    }
}

/* End of CSS */