/* =========================================
   Cooking Info CTA Section - Premium Design V2
   ========================================= */

.cooking-info-cta-section {
    padding: 120px 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(196, 86, 61, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(49, 94, 73, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
    position: relative;
    overflow: hidden;
}

.cooking-info-cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(196, 86, 61, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    filter: blur(60px);
}

.cooking-info-cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(49, 94, 73, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
    filter: blur(60px);
}

.cta-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.cta-text-content {
    animation: fadeInUp 0.8s ease;
    padding-right: 2rem;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #315E49 0%, #FF8AAD 50%, #FFA07A 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px rgba(49, 94, 73, 0.35);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.cta-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.cta-title {
    font-size: 3.25rem;
    font-weight: 900;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 1.75rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #C4563D 0%, #4FB8B1 50%, #3FA09A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #C4563D 0%, #4FB8B1 100%);
    border-radius: 2px;
    opacity: 0.3;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.85;
    color: #666666;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
    background: rgba(196, 86, 61, 0.04);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(196, 86, 61, 0.15);
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: #1a1a1a;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 10px;
}

.cta-feature-item:hover {
    transform: translateX(8px);
    background: rgba(196, 86, 61, 0.08);
}

.cta-feature-item i {
    font-size: 1.5rem;
    color: #10b981;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1.2rem 2.5rem;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #C4563D 0%, #4FB8B1 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(196, 86, 61, 0.35);
    border: none;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4FB8B1 0%, #3FA09A 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(196, 86, 61, 0.45);
}

.btn-cta-primary:hover::before {
    opacity: 1;
}

.btn-cta-primary i,
.btn-cta-secondary i {
    position: relative;
    z-index: 1;
}

.btn-cta-primary span,
.btn-cta-secondary span {
    position: relative;
    z-index: 1;
}

.btn-cta-secondary {
    background: #262019;
    color: #C4563D;
    border: 2px solid #C4563D;
    box-shadow: 0 4px 15px rgba(196, 86, 61, 0.15);
}

.btn-cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #C4563D 0%, #4FB8B1 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-cta-secondary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(196, 86, 61, 0.3);
    border-color: transparent;
    color: white;
}

.btn-cta-secondary:hover::before {
    opacity: 1;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(196, 86, 61, 0.25);
    position: relative;
}

.cta-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #C4563D, transparent);
    border-radius: 2px;
}

.cta-stat-item {
    text-align: center;
    position: relative;
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 86, 61, 0.2);
    transition: all 0.3s ease;
}

.cta-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 86, 61, 0.2);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(196, 86, 61, 0.4);
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, #C4563D 0%, #4FB8B1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.95rem;
    color: #666666;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CTA Visual Content - Enhanced */
.cta-visual-content {
    position: relative;
    height: 550px;
    animation: fadeInRight 0.8s ease;
    perspective: 1000px;
}

.cta-card-stack {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.cta-card {
    position: absolute;
    width: 300px;
    height: 340px;
    background: #262019;
    border-radius: 28px;
    padding: 3rem 2.5rem;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.cta-card i {
    font-size: 4.5rem;
    margin-bottom: 1.75rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.cta-card h4 {
    font-size: 1.85rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.cta-card p {
    font-size: 1.05rem;
    color: #666666;
    font-weight: 500;
    line-height: 1.5;
}

.cta-card.card-1 {
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #FFE5E5 0%, #FFF0F0 50%, #FFF5F5 100%);
    border: 3px solid #FF6B6B;
    z-index: 3;
    animation: cardFloat1 6s ease-in-out infinite;
    box-shadow: 
        0 25px 70px rgba(255, 107, 107, 0.25),
        0 10px 30px rgba(255, 107, 107, 0.15);
}

.cta-card.card-1 i {
    color: #FF6B6B;
}

.cta-card.card-2 {
    top: 50px;
    right: 0;
    background: linear-gradient(135deg, #E5F9F7 0%, #EFF FBF9 50%, #F5FFFD 100%);
    border: 3px solid #4ECDC4;
    z-index: 2;
    animation: cardFloat2 7s ease-in-out infinite;
    box-shadow: 
        0 25px 70px rgba(78, 205, 196, 0.25),
        0 10px 30px rgba(78, 205, 196, 0.15);
}

.cta-card.card-2 i {
    color: #4ECDC4;
}

.cta-card.card-3 {
    bottom: 0;
    left: 50px;
    background: linear-gradient(135deg, #F3E5FF 0%, #F7EDFF 50%, #FAF5FF 100%);
    border: 3px solid #A78BFA;
    z-index: 1;
    animation: cardFloat3 8s ease-in-out infinite;
    box-shadow: 
        0 25px 70px rgba(167, 139, 250, 0.25),
        0 10px 30px rgba(167, 139, 250, 0.15);
}

.cta-card.card-3 i {
    color: #A78BFA;
}

.cta-card:hover {
    transform: translateY(-15px) scale(1.08) rotateY(5deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

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

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

@keyframes cardFloat3 {
    0%, 100% { 
        transform: translateY(0px) rotate(-3deg); 
    }
    50% { 
        transform: translateY(-30px) rotate(-7deg); 
    }
}

