/* Nourish Vibes Featured Client Section */
.featured-client.nourish-vibes-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.featured-client.nourish-vibes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.client-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Side: Content */
.client-content {
    animation: fadeInLeft 1s ease-out;
}

.client-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.badge-icon {
    font-size: 1.2rem;
    animation: rotate 3s linear infinite;
}

/* Brand Logo Container */
.brand-logo-container {
    margin-bottom: 20px;
}

.brand-logo-container .client-brand-name {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.1;
    color: #2c3e50;
}

.brand-tagline {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 30px;
    font-style: italic;
}

.brand-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    animation: logoFadeIn 1s ease-out;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

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

.client-brand-name {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.1;
    color: #2c3e50;
}

.brand-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

.client-tagline {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 30px;
    font-style: italic;
}

.client-description {
    margin-bottom: 40px;
}

.description-main {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 15px;
}

.description-main strong {
    color: #667eea;
    font-weight: 700;
}

.description-detail {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a6c7d;
}

/* Features Grid */
.client-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin: 0;
}

/* CTA Buttons */
.client-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    background: white;
    color: #667eea;
    border-color: #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
}

/* Right Side: Visual */
.client-visual {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.visual-container {
    position: relative;
    padding: 40px;
    min-height: 500px;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
    white-space: nowrap;
}

.badge-1 {
    top: 5%;
    left: -5%;
    animation-delay: 0s;
}

.badge-2 {
    top: 40%;
    right: -5%;
    animation-delay: 1s;
}

.badge-3 {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.badge-emoji {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.badge-label {
    font-size: 0.9rem;
    color: #2c3e50;
    white-space: nowrap;
}

/* Product Showcase */
.product-showcase {
    position: relative;
    z-index: 2;
}

.showcase-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: white;
    padding: 30px;
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s ease;
}

.showcase-image:hover img {
    transform: scale(1.05);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    pointer-events: none;
}

.showcase-caption {
    text-align: center;
    margin-top: 15px;
}

.showcase-caption p {
    font-size: 0.95rem;
    color: #667eea;
    font-weight: 600;
    margin: 0;
}

/* Stats Container */
.stats-container {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    padding: 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: #7f8c8d;
    font-weight: 600;
}

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

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

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .client-showcase {
        gap: 40px;
    }
    
    .client-brand-name {
        font-size: 2.8rem;
    }
    
    .client-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .featured-client.nourish-vibes-section {
        padding: 60px 0;
    }
    
    .client-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .brand-logo {
        max-width: 300px;
    }
    
    .client-brand-name {
        font-size: 2.2rem;
    }
    
    .client-tagline {
        font-size: 1.2rem;
    }
    
    .client-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .client-cta {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .floating-badge {
        position: relative;
        margin-bottom: 15px;
        justify-content: center;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
    }
    
    .badge-1, .badge-2, .badge-3 {
        position: relative;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
    }
    
    .visual-container {
        padding: 20px;
        min-height: auto;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        max-width: 250px;
    }
    
    .client-brand-name {
        font-size: 1.8rem;
    }
    
    .description-main, .description-detail {
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}