/* === Apple-Style Consultation Section === */
.consultation-wrapper {
    margin: 3rem 0;
    padding: 0 1rem;
    position: relative;
}

.consultation-card {
    background: linear-gradient(135deg, 
        rgba(120, 119, 198, 0.25) 0%,
        rgba(255, 3, 112, 0.15) 25%,
        rgba(0, 122, 255, 0.15) 50%,
        rgba(88, 86, 214, 0.25) 75%,
        rgba(255, 45, 85, 0.15) 100%
    );
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    animation: appleFloat 8s ease-in-out infinite;
}

@keyframes appleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        box-shadow: 
            0 8px 32px rgba(31, 38, 135, 0.25),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
    50% { 
        transform: translateY(-6px) scale(1.005);
        box-shadow: 
            0 12px 40px rgba(31, 38, 135, 0.35),
            inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }
}

/* Apple-style ultra-soft flowing gradient border */
.consultation-card::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 27px;
    background: linear-gradient(
        90deg,
        rgba(120, 119, 198, 0.6) 0%,
        rgba(255, 3, 112, 0.4) 20%,
        rgba(0, 122, 255, 0.5) 40%,
        rgba(88, 86, 214, 0.6) 60%,
        rgba(255, 45, 85, 0.4) 80%,
        rgba(120, 119, 198, 0.6) 100%
    );
    filter: blur(8px);
    animation: appleFlow 12s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    z-index: -1;
    opacity: 0.7;
}

@keyframes appleFlow {
    0% { 
        background: linear-gradient(
            90deg,
            rgba(120, 119, 198, 0.6) 0%,
            rgba(255, 3, 112, 0.4) 20%,
            rgba(0, 122, 255, 0.5) 40%,
            rgba(88, 86, 214, 0.6) 60%,
            rgba(255, 45, 85, 0.4) 80%,
            rgba(120, 119, 198, 0.6) 100%
        );
    }
    12.5% { 
        background: linear-gradient(
            90deg,
            rgba(135, 100, 210, 0.55) 0%,
            rgba(240, 25, 130, 0.45) 20%,
            rgba(20, 140, 255, 0.52) 40%,
            rgba(100, 95, 220, 0.58) 60%,
            rgba(255, 60, 100, 0.42) 80%,
            rgba(135, 100, 210, 0.55) 100%
        );
    }
    25% { 
        background: linear-gradient(
            90deg,
            rgba(255, 45, 85, 0.5) 0%,
            rgba(120, 119, 198, 0.55) 20%,
            rgba(255, 3, 112, 0.45) 40%,
            rgba(0, 122, 255, 0.52) 60%,
            rgba(88, 86, 214, 0.58) 80%,
            rgba(255, 45, 85, 0.5) 100%
        );
    }
    37.5% { 
        background: linear-gradient(
            90deg,
            rgba(200, 70, 150, 0.52) 0%,
            rgba(140, 110, 205, 0.57) 20%,
            rgba(220, 20, 125, 0.47) 40%,
            rgba(25, 135, 255, 0.54) 60%,
            rgba(105, 90, 225, 0.56) 80%,
            rgba(200, 70, 150, 0.52) 100%
        );
    }
    50% { 
        background: linear-gradient(
            90deg,
            rgba(88, 86, 214, 0.6) 0%,
            rgba(255, 45, 85, 0.48) 20%,
            rgba(120, 119, 198, 0.55) 40%,
            rgba(255, 3, 112, 0.45) 60%,
            rgba(0, 122, 255, 0.52) 80%,
            rgba(88, 86, 214, 0.6) 100%
        );
    }
    62.5% { 
        background: linear-gradient(
            90deg,
            rgba(50, 110, 240, 0.58) 0%,
            rgba(200, 60, 120, 0.5) 20%,
            rgba(140, 125, 205, 0.57) 40%,
            rgba(230, 15, 125, 0.47) 60%,
            rgba(15, 135, 255, 0.54) 80%,
            rgba(50, 110, 240, 0.58) 100%
        );
    }
    75% { 
        background: linear-gradient(
            90deg,
            rgba(0, 122, 255, 0.55) 0%,
            rgba(88, 86, 214, 0.58) 20%,
            rgba(255, 45, 85, 0.48) 40%,
            rgba(120, 119, 198, 0.55) 60%,
            rgba(255, 3, 112, 0.45) 80%,
            rgba(0, 122, 255, 0.55) 100%
        );
    }
    87.5% { 
        background: linear-gradient(
            90deg,
            rgba(80, 130, 220, 0.57) 0%,
            rgba(110, 95, 225, 0.59) 20%,
            rgba(240, 55, 105, 0.49) 40%,
            rgba(135, 125, 200, 0.56) 60%,
            rgba(250, 20, 120, 0.46) 80%,
            rgba(80, 130, 220, 0.57) 100%
        );
    }
    100% { 
        background: linear-gradient(
            90deg,
            rgba(120, 119, 198, 0.6) 0%,
            rgba(255, 3, 112, 0.4) 20%,
            rgba(0, 122, 255, 0.5) 40%,
            rgba(88, 86, 214, 0.6) 60%,
            rgba(255, 45, 85, 0.4) 80%,
            rgba(120, 119, 198, 0.6) 100%
        );
    }
}

/* Ultra-soft inner glow */
.consultation-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        transparent 80%
    );
    animation: applePulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes applePulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

.consultation-card:hover {
    transform: translateY(-8px) scale(1.015);
    background: linear-gradient(135deg, 
        rgba(120, 119, 198, 0.3) 0%,
        rgba(255, 3, 112, 0.2) 25%,
        rgba(0, 122, 255, 0.2) 50%,
        rgba(88, 86, 214, 0.3) 75%,
        rgba(255, 45, 85, 0.2) 100%
    );
    box-shadow: 
        0 16px 50px rgba(31, 38, 135, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.consultation-header {
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 2;
    animation: appleSlideUp 1.2s cubic-bezier(0.23, 1, 0.320, 1);
}

@keyframes appleSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.consultation-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    animation: appleIconFloat 4s ease-in-out infinite;
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

@keyframes appleIconFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        box-shadow: 
            0 6px 24px rgba(0, 0, 0, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
    50% { 
        transform: translateY(-4px) rotate(1deg);
        box-shadow: 
            0 8px 28px rgba(0, 0, 0, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

/* Apple-style ultra-soft icon glow */
.consultation-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(
        90deg,
        rgba(120, 119, 198, 0.4) 0%,
        rgba(255, 3, 112, 0.3) 25%,
        rgba(0, 122, 255, 0.35) 50%,
        rgba(88, 86, 214, 0.4) 75%,
        rgba(120, 119, 198, 0.4) 100%
    );
    filter: blur(6px);
    animation: appleIconFlow 10s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    z-index: -1;
    opacity: 0.6;
}

@keyframes appleIconFlow {
    0% { 
        background: linear-gradient(
            90deg,
            rgba(120, 119, 198, 0.4) 0%,
            rgba(255, 3, 112, 0.3) 25%,
            rgba(0, 122, 255, 0.35) 50%,
            rgba(88, 86, 214, 0.4) 75%,
            rgba(120, 119, 198, 0.4) 100%
        );
    }
    16.6% { 
        background: linear-gradient(
            90deg,
            rgba(150, 90, 220, 0.38) 0%,
            rgba(230, 20, 125, 0.32) 25%,
            rgba(25, 140, 255, 0.37) 50%,
            rgba(110, 95, 225, 0.39) 75%,
            rgba(150, 90, 220, 0.38) 100%
        );
    }
    33% { 
        background: linear-gradient(
            90deg,
            rgba(88, 86, 214, 0.4) 0%,
            rgba(120, 119, 198, 0.38) 25%,
            rgba(255, 3, 112, 0.32) 50%,
            rgba(0, 122, 255, 0.37) 75%,
            rgba(88, 86, 214, 0.4) 100%
        );
    }
    49.9% { 
        background: linear-gradient(
            90deg,
            rgba(40, 130, 240, 0.37) 0%,
            rgba(140, 110, 205, 0.39) 25%,
            rgba(220, 15, 125, 0.33) 50%,
            rgba(20, 135, 255, 0.36) 75%,
            rgba(40, 130, 240, 0.37) 100%
        );
    }
    66% { 
        background: linear-gradient(
            90deg,
            rgba(0, 122, 255, 0.35) 0%,
            rgba(88, 86, 214, 0.39) 25%,
            rgba(120, 119, 198, 0.38) 50%,
            rgba(255, 3, 112, 0.32) 75%,
            rgba(0, 122, 255, 0.35) 100%
        );
    }
    82.3% { 
        background: linear-gradient(
            90deg,
            rgba(70, 140, 210, 0.36) 0%,
            rgba(105, 100, 230, 0.4) 25%,
            rgba(180, 80, 160, 0.34) 50%,
            rgba(240, 25, 115, 0.31) 75%,
            rgba(70, 140, 210, 0.36) 100%
        );
    }
    100% { 
        background: linear-gradient(
            90deg,
            rgba(120, 119, 198, 0.4) 0%,
            rgba(255, 3, 112, 0.3) 25%,
            rgba(0, 122, 255, 0.35) 50%,
            rgba(88, 86, 214, 0.4) 75%,
            rgba(120, 119, 198, 0.4) 100%
        );
    }
}

.consultation-icon i {
    font-size: 1.8rem;
    color: white;
    position: relative;
    z-index: 3;
    animation: appleIconPulse 3s ease-in-out infinite;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.2));
}

@keyframes appleIconPulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.2));
    }
    50% { 
        transform: scale(1.03);
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
    }
}

.consultation-header h2 {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    animation: appleTextGlow 5s ease-in-out infinite;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@keyframes appleTextGlow {
    0%, 100% { 
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.08));
    }
    50% { 
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.15));
    }
}

.consultation-header p {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 0;
    line-height: 1.5;
    animation: appleTextFloat 6s ease-in-out infinite;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

@keyframes appleTextFloat {
    0%, 100% { transform: translateY(0px); opacity: 0.85; }
    50% { transform: translateY(-1px); opacity: 0.95; }
}

.consultation-features {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin: 1.8rem 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 0.8rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0.04) 100%
    );
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    min-width: 100px;
    position: relative;
    overflow: hidden;
    animation: appleFeatureFloat 5s ease-in-out infinite;
    box-shadow: 
        0 3px 12px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.feature:nth-child(1) { animation-delay: 0s; }
.feature:nth-child(2) { animation-delay: 0.8s; }
.feature:nth-child(3) { animation-delay: 1.6s; }

@keyframes appleFeatureFloat {
    0%, 100% { 
        transform: translateY(0px);
        box-shadow: 
            0 3px 12px rgba(0, 0, 0, 0.06),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
    50% { 
        transform: translateY(-3px);
        box-shadow: 
            0 6px 18px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }
}

.feature:hover {
    transform: translateY(-6px) scale(1.02);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.16) 0%,
        rgba(255, 255, 255, 0.06) 100%
    );
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature i {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    animation: appleIconBounce 3s ease-in-out infinite;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.15));
}

.feature:nth-child(1) i { animation-delay: 0s; }
.feature:nth-child(2) i { animation-delay: 0.4s; }
.feature:nth-child(3) i { animation-delay: 0.8s; }

@keyframes appleIconBounce {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.15));
    }
    50% { 
        transform: translateY(-2px) scale(1.03);
        filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
    }
}

.feature span {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.consultation-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.stat {
    text-align: center;
    position: relative;
    animation: appleStatFloat 4s ease-in-out infinite;
}

.stat:nth-child(1) { animation-delay: 0s; }
.stat:nth-child(2) { animation-delay: 1.5s; }

@keyframes appleStatFloat {
    0%, 100% { transform: scale(1) translateY(0px); }
    50% { transform: scale(1.015) translateY(-2px); }
}

.stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.3rem;
    animation: appleNumberGlow 4s ease-in-out infinite;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.2));
}

@keyframes appleNumberGlow {
    0%, 100% { 
        filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.2));
        text-shadow: 0 0 6px rgba(255, 255, 255, 0.15);
    }
    50% { 
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
    }
}

.stat .label {
    font-size: 0.8rem;
    opacity: 0.75;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

.consultation-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.18) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    z-index: 2;
    overflow: hidden;
    animation: appleBtnFloat 6s ease-in-out infinite;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@keyframes appleBtnFloat {
    0%, 100% { 
        transform: translateY(0px);
        box-shadow: 
            0 6px 20px rgba(0, 0, 0, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }
    50% { 
        transform: translateY(-3px);
        box-shadow: 
            0 8px 24px rgba(0, 0, 0, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.16);
    }
}

.consultation-btn:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.22) 0%,
        rgba(255, 255, 255, 0.12) 100%
    );
    transform: translateY(-5px) scale(1.015);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.25);
}

.consultation-btn i:first-child {
    animation: appleMagicFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.15));
}

.consultation-btn i:last-child {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    animation: appleArrowFloat 3s ease-in-out infinite;
}

.consultation-btn:hover i:first-child {
    animation: appleMagicSpin 1s cubic-bezier(0.23, 1, 0.320, 1);
}

.consultation-btn:hover i:last-child {
    transform: translateX(-4px) scale(1.05);
}

@keyframes appleMagicFloat {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.15));
    }
    50% { 
        transform: rotate(3deg) scale(1.03);
        filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
    }
}

@keyframes appleMagicSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.15); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes appleArrowFloat {
    0%, 100% { transform: translateX(0px) scale(1); }
    50% { transform: translateX(-1px) scale(1.02); }
}

/* === Apple-style Responsive Design === */
@media (max-width: 768px) {
    .consultation-card {
        padding: 2.5rem 1.5rem;
        margin: 2rem 0;
        border-radius: 20px;
    }
    
    .consultation-header h2 {
        font-size: 1.8rem;
    }
    
    .consultation-icon {
        width: 75px;
        height: 75px;
    }
    
    .consultation-icon i {
        font-size: 1.8rem;
    }
    
    .consultation-features {
        gap: 1.2rem;
    }
    
    .feature {
        min-width: 100px;
        padding: 1.2rem 1rem;
    }
    
    .consultation-stats {
        gap: 2.5rem;
    }
    
    .stat .number {
        font-size: 2rem;
    }
    
    .consultation-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .consultation-card {
        padding: 2rem 1rem;
        border-radius: 18px;
    }
    
    .consultation-header h2 {
        font-size: 1.5rem;
    }
    
    .consultation-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .feature {
        flex-direction: row;
        min-width: 180px;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .feature i {
        margin-bottom: 0;
        margin-left: 0.5rem;
        font-size: 1.3rem;
    }
    
    .consultation-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .consultation-icon {
        width: 65px;
        height: 65px;
    }
    
    .consultation-icon i {
        font-size: 1.5rem;
    }
    
    .stat .number {
        font-size: 1.8rem;
    }
    
    .consultation-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        gap: 0.8rem;
    }
} 