/* ==========================================================================
   Wellness Page Styles
   Purpose: Styling for AI for Health & Wellness Businesses page
   Author: Minds4AI Team
   Last Modified: 2024
   ========================================================================== */

/* Wellness Color Palette */
:root {
    --wellness-primary: #4CAF50;     /* Calming green */
    --wellness-secondary: #81C784;   /* Light green */
    --wellness-accent: #E8F5E8;      /* Very light green */
    --wellness-sage: #9CCC65;        /* Sage green */
    --wellness-mint: #A5D6A7;        /* Mint green */
    --wellness-lavender: #E1BEE7;    /* Soft lavender */
    --wellness-peach: #FFCCBC;       /* Warm peach */
    --wellness-sky: #E3F2FD;         /* Light sky blue */
    --wellness-gold: #FFD54F;        /* Warm gold */
    --wellness-white: #FAFAFA;       /* Soft white */
    --wellness-text: #2E7D32;        /* Dark green text */
    --wellness-text-light: #66BB6A;  /* Light green text */
    --wellness-shadow: rgba(76, 175, 80, 0.1);
    --wellness-gradient: linear-gradient(135deg, var(--wellness-primary) 0%, var(--wellness-secondary) 100%);
}

/* Hero Section */
.wellness-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--wellness-accent) 0%, var(--wellness-sky) 50%, var(--wellness-peach) 100%);
    overflow: hidden;
}

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

.wellness-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.pattern-element {
    position: absolute;
    font-size: 3rem;
    color: var(--wellness-primary);
    animation: float 6s ease-in-out infinite;
}

.pattern-element.spa-icon {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.pattern-element.calendar-icon {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.pattern-element.chat-icon {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.pattern-element.heart-icon {
    bottom: 20%;
    right: 25%;
    animation-delay: 3s;
}

.pattern-element.lotus-icon {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

.digital-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.ui-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    box-shadow: 0 4px 20px var(--wellness-shadow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--wellness-text);
    animation: pulse 3s ease-in-out infinite;
}

.ui-element i {
    color: var(--wellness-primary);
}

.ui-element.chat-bubble {
    top: 20%;
    right: 10%;
    animation-delay: 0.5s;
}

.ui-element.calendar-widget {
    bottom: 40%;
    left: 5%;
    animation-delay: 1.5s;
}

.ui-element.social-widget {
    bottom: 15%;
    right: 20%;
    animation-delay: 2.5s;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--wellness-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--wellness-text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: var(--wellness-gradient);
    border: none;
    color: white;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px var(--wellness-shadow);
}

.hero-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px var(--wellness-shadow);
}

/* Pain Points Section */
.pain-points-section {
    padding: 6rem 0;
    background: var(--wellness-white);
}

.pain-points-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.pain-point-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pain-point-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--wellness-shadow);
}

.pain-icon {
    width: 60px;
    height: 60px;
    background: var(--wellness-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pain-icon i {
    font-size: 1.5rem;
    color: var(--wellness-primary);
}

.pain-text h3 {
    font-size: 1.2rem;
    color: var(--wellness-text);
    margin-bottom: 0.5rem;
}

.pain-text p {
    color: #666;
    line-height: 1.6;
}

.pain-points-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.wellness-professional {
    position: relative;
    width: 200px;
    height: 200px;
}

.professional-avatar {
    width: 120px;
    height: 120px;
    background: var(--wellness-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.professional-avatar i {
    font-size: 3rem;
    color: white;
}

.juggling-items {
    position: absolute;
    width: 100%;
    height: 100%;
}

.juggling-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--wellness-shadow);
    animation: orbit 8s linear infinite;
}

.juggling-item i {
    font-size: 1.2rem;
    color: var(--wellness-primary);
}

.juggling-item.phone {
    animation-delay: 0s;
}

.juggling-item.calendar {
    animation-delay: 2s;
}

.juggling-item.social {
    animation-delay: 4s;
}

.juggling-item.chat {
    animation-delay: 6s;
}

.stress-indicators {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.stress-line {
    width: 30px;
    height: 3px;
    background: #ff6b6b;
    margin: 3px 0;
    border-radius: 2px;
    animation: stress 1s ease-in-out infinite alternate;
}

.stress-line:nth-child(2) {
    animation-delay: 0.2s;
}

.stress-line:nth-child(3) {
    animation-delay: 0.4s;
}

/* Wellness Bundle Section */
.wellness-bundle-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--wellness-accent) 0%, white 100%);
}

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

.bundle-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px var(--wellness-shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bundle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--wellness-gradient);
}

.bundle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--wellness-shadow);
}

.bundle-icon {
    width: 80px;
    height: 80px;
    background: var(--wellness-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.bundle-card h3 {
    font-size: 1.5rem;
    color: var(--wellness-text);
    margin-bottom: 1rem;
}

.bundle-card > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.bundle-features {
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.feature-item i {
    color: var(--wellness-primary);
    font-size: 0.9rem;
}

.feature-item span {
    color: #666;
    font-size: 0.9rem;
}

.bundle-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: var(--wellness-accent);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--wellness-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--wellness-text);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Client Spotlight Section */
.client-spotlight-section {
    padding: 6rem 0;
    background: var(--wellness-accent);
}

.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 100%;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px var(--wellness-shadow);
}

.testimonial-text {
    margin-bottom: 2rem;
}

.testimonial-text p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    font-style: italic;
    position: relative;
}

.testimonial-text p::before {
    content: '"';
    font-size: 3rem;
    color: var(--wellness-primary);
    position: absolute;
    top: -10px;
    left: -20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--wellness-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.5rem;
    color: white;
}

.author-info h4 {
    color: var(--wellness-text);
    margin-bottom: 0.3rem;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.author-rating {
    display: flex;
    gap: 0.2rem;
}

.author-rating i {
    color: var(--wellness-gold);
    font-size: 0.8rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: var(--wellness-gradient);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--wellness-primary);
    transform: scale(1.2);
}

.spotlight-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Add-on Section */
.addon-section {
    padding: 6rem 0;
    background: white;
}

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

.addon-header h2 {
    font-size: 2.5rem;
    color: var(--wellness-text);
    margin-bottom: 1rem;
}

.addon-header p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.addon-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.addon-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: var(--wellness-accent);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.addon-feature:hover {
    background: var(--wellness-secondary);
    color: white;
}

.addon-feature i {
    font-size: 1.2rem;
    color: var(--wellness-primary);
}

.addon-feature:hover i {
    color: white;
}

.addon-cta {
    margin-top: 2rem;
}

/* Final CTA Section */
.final-cta-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--wellness-lavender) 0%, var(--wellness-peach) 50%, var(--wellness-sky) 100%);
    overflow: hidden;
}

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

.wellness-ambiance {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.ambient-element {
    position: absolute;
    font-size: 4rem;
    color: var(--wellness-primary);
    animation: float 8s ease-in-out infinite;
}

.ambient-element.lotus {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.ambient-element.zen {
    top: 30%;
    right: 20%;
    animation-delay: 2s;
}

.ambient-element.heart {
    bottom: 25%;
    left: 25%;
    animation-delay: 4s;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--wellness-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--wellness-text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-actions .btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    background: var(--wellness-gradient);
    border: none;
    color: white;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px var(--wellness-shadow);
}

.cta-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--wellness-shadow);
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--wellness-text-light);
    font-size: 0.9rem;
}

.cta-note i {
    color: var(--wellness-primary);
}

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

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

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(100px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(100px) rotate(-360deg);
    }
}

@keyframes stress {
    0% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }
    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .pain-points-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bundle-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .addon-features {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .ui-element {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }
    
    .testimonial-slide {
        padding: 2rem;
    }
    
    .testimonial-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .bundle-card {
        padding: 2rem;
    }
    
    .testimonial-slide {
        padding: 1.5rem;
    }
    
    .ui-element {
        position: relative;
        margin: 1rem 0;
    }
    
    .digital-overlay {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
    }
}